Interface CfnAnomalyDetector.RangeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnomalyDetector.RangeProperty.Jsii$Proxy
- Enclosing class:
CfnAnomalyDetector
@Stability(Stable)
public static interface CfnAnomalyDetector.RangeProperty
extends software.amazon.jsii.JsiiSerializable
Each
Range
specifies one range of days or times to exclude from use for training or updating an anomaly detection model.
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.*; RangeProperty rangeProperty = RangeProperty.builder() .endTime("endTime") .startTime("startTime") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnomalyDetector.RangeProperty
static final class
An implementation forCfnAnomalyDetector.RangeProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The end time of the range to exclude.The start time of the range to exclude.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEndTime
The end time of the range to exclude.The format is
yyyy-MM-dd'T'HH:mm:ss
. For example,2019-07-01T23:59:59
.- See Also:
-
getStartTime
The start time of the range to exclude.The format is
yyyy-MM-dd'T'HH:mm:ss
. For example,2019-07-01T23:59:59
.- See Also:
-
builder
-