interface RangeProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.CloudWatch.CfnAnomalyDetector.RangeProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudwatch#CfnAnomalyDetector_RangeProperty | 
|  Java | software.amazon.awscdk.services.cloudwatch.CfnAnomalyDetector.RangeProperty | 
|  Python | aws_cdk.aws_cloudwatch.CfnAnomalyDetector.RangeProperty | 
|  TypeScript | aws-cdk-lib»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 { aws_cloudwatch as cloudwatch } from 'aws-cdk-lib';
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 .
