Interface CfnAnomalyDetector.ConfigurationProperty

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

@Stability(Stable) public static interface CfnAnomalyDetector.ConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Specifies details about how the anomaly detection model is to be trained, including time ranges to exclude when training and updating the model.

The configuration can also include the time zone to use for the metric.

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.*;
 ConfigurationProperty configurationProperty = ConfigurationProperty.builder()
         .excludedTimeRanges(List.of(RangeProperty.builder()
                 .endTime("endTime")
                 .startTime("startTime")
                 .build()))
         .metricTimeZone("metricTimeZone")
         .build();
 

See Also: