public static interface CfnAnomalyDetector.RangeProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnAnomalyDetector.RangeProperty.Builder
A builder for
CfnAnomalyDetector.RangeProperty |
static class |
CfnAnomalyDetector.RangeProperty.Jsii$Proxy
An implementation for
CfnAnomalyDetector.RangeProperty |
Modifier and Type | Method and Description |
---|---|
static CfnAnomalyDetector.RangeProperty.Builder |
builder() |
java.lang.String |
getEndTime()
The end time of the range to exclude.
|
java.lang.String |
getStartTime()
The start time of the range to exclude.
|
java.lang.String getEndTime()
The format is yyyy-MM-dd'T'HH:mm:ss
. For example, 2019-07-01T23:59:59
.
java.lang.String getStartTime()
The format is yyyy-MM-dd'T'HH:mm:ss
. For example, 2019-07-01T23:59:59
.
static CfnAnomalyDetector.RangeProperty.Builder builder()