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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnomalyDetector.ConfigurationProperty
static final class
An implementation forCfnAnomalyDetector.ConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExcludedTimeRanges
Specifies an array of time ranges to exclude from use when the anomaly detection model is trained and updated.Use this to make sure that events that could cause unusual values for the metric, such as deployments, aren't used when CloudWatch creates or updates the model.
- See Also:
-
getMetricTimeZone
The time zone to use for the metric.This is useful to enable the model to automatically account for daylight savings time changes if the metric is sensitive to such time changes.
To specify a time zone, use the name of the time zone as specified in the standard tz database. For more information, see tz database .
- See Also:
-
builder
-