interface RangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudWatch.CfnAnomalyDetectorPropsMixin.RangeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudwatch#CfnAnomalyDetectorPropsMixin_RangeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudwatch.CfnAnomalyDetectorPropsMixin.RangeProperty |
Python | aws_cdk.cfn_property_mixins.aws_cloudwatch.CfnAnomalyDetectorPropsMixin.RangeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudwatch » CfnAnomalyDetectorPropsMixin » 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/cfn-property-mixins';
const rangeProperty: cloudwatch.CfnAnomalyDetectorPropsMixin.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
(optional)
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
(optional)
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
Go
Java
Python
TypeScript