interface RangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudWatch.Mixins.CfnAnomalyDetectorPropsMixin.RangeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudwatch/mixins#CfnAnomalyDetectorPropsMixin_RangeProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudwatch.mixins.CfnAnomalyDetectorPropsMixin.RangeProperty |
Python | aws_cdk.mixins_preview.aws_cloudwatch.mixins.CfnAnomalyDetectorPropsMixin.RangeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudwatch » mixins » 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 { mixins as cloudwatch_mixins } from '@aws-cdk/mixins-preview/aws-cloudwatch';
const rangeProperty: cloudwatch_mixins.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