com.damick.dropwizard.metrics.cloudwatch.CloudWatchClientConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dropwizard-metrics-cloudwatch Show documentation
Show all versions of dropwizard-metrics-cloudwatch Show documentation
Dropwizard Metrics Plugin for reporting to AWS CloudWatch.
The newest version!
package com.damick.dropwizard.metrics.cloudwatch;
import com.amazonaws.ClientConfiguration;
import com.fasterxml.jackson.annotation.JsonIgnore;
import java.security.SecureRandom;
/**
*
*/
public class CloudWatchClientConfiguration extends ClientConfiguration {
public CloudWatchClientConfiguration() {
super();
}
public CloudWatchClientConfiguration(ClientConfiguration other) {
super(other);
}
@JsonIgnore
public void setSecureRandom(SecureRandom secureRandom) {
super.setSecureRandom(secureRandom);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy