aws-cdk-lib.aws_cloudwatch.CfnAnomalyDetector.RangeProperty

interface RangeProperty

LanguageType name
.NETAmazon.CDK.AWS.CloudWatch.CfnAnomalyDetector.RangeProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscloudwatch#CfnAnomalyDetector_RangeProperty
Javasoftware.amazon.awscdk.services.cloudwatch.CfnAnomalyDetector.RangeProperty
Pythonaws_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

NameTypeDescription
endTimestringThe end time of the range to exclude.
startTimestringThe 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 .