Interface CfnAnomalyDetector.SingleMetricAnomalyDetectorProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAnomalyDetector.SingleMetricAnomalyDetectorProperty.Jsii$Proxy
Enclosing class:
CfnAnomalyDetector

@Stability(Stable) public static interface CfnAnomalyDetector.SingleMetricAnomalyDetectorProperty extends software.amazon.jsii.JsiiSerializable
Designates the CloudWatch metric and statistic that provides the time series the anomaly detector uses as input.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.cloudwatch.*;
 SingleMetricAnomalyDetectorProperty singleMetricAnomalyDetectorProperty = SingleMetricAnomalyDetectorProperty.builder()
         .dimensions(List.of(DimensionProperty.builder()
                 .name("name")
                 .value("value")
                 .build()))
         .metricName("metricName")
         .namespace("namespace")
         .stat("stat")
         .build();