All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dtsx.astra.sdk.db.domain.telemetry.CloudWatchTelemetryRequest Maven / Gradle / Ivy

There is a newer version: 1.2.9
Show newest version
package com.dtsx.astra.sdk.db.domain.telemetry;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Externalization of monitoring.
 */
public class CloudWatchTelemetryRequest {

    /** json field. */
    @JsonProperty("access_key")
    private String accessKey;

    /** json field. */
    private String secret;

    /** json field. */
    private String region;

    /**
     * Default constructor.
     */
    public CloudWatchTelemetryRequest() {
    }

    /**
     * Full constructor.
     *
     * @param accessKey
     *      access key
     * @param secret
     *      secret
     * @param region
     *      region
     */
    public CloudWatchTelemetryRequest(String accessKey, String secret, String region) {
        this.accessKey = accessKey;
        this.secret = secret;
        this.region = region;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy