interface RangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudWatch.CfnAnomalyDetector.RangeProperty |
Java | software.amazon.awscdk.services.cloudwatch.CfnAnomalyDetector.RangeProperty |
Python | aws_cdk.aws_cloudwatch.CfnAnomalyDetector.RangeProperty |
TypeScript | @aws-cdk/aws-cloudwatch » CfnAnomalyDetector » RangeProperty |
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 * as cloudwatch from '@aws-cdk/aws-cloudwatch';
const rangeProperty: cloudwatch.CfnAnomalyDetector.RangeProperty = {
endTime: 'endTime',
startTime: 'startTime',
};
Properties
| Name | Type | Description |
|---|---|---|
| end | string | The end time of the range to exclude. |
| start | string | The start time of the range to exclude. |
endTime
Type:
string
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 .
startTime
Type:
string
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 .

.NET
Java
Python
TypeScript