interface EvaluationWindowProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudWatch.CfnAlarmPropsMixin.EvaluationWindowProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudwatch#CfnAlarmPropsMixin_EvaluationWindowProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudwatch.CfnAlarmPropsMixin.EvaluationWindowProperty |
Python | aws_cdk.cfn_property_mixins.aws_cloudwatch.CfnAlarmPropsMixin.EvaluationWindowProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudwatch » CfnAlarmPropsMixin » EvaluationWindowProperty |
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';
declare const slidingWindow: any;
const evaluationWindowProperty: cloudwatch.CfnAlarmPropsMixin.EvaluationWindowProperty = {
slidingWindow: slidingWindow,
wallClockWindow: {
timezone: 'timezone',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| sliding | any | Configuration for sliding evaluation window (default behavior). |
| wall | IResolvable | Wall |
slidingWindow?
Type:
any
(optional)
Configuration for sliding evaluation window (default behavior).
wallClockWindow?
Type:
IResolvable | Wall
(optional)

.NET
Go
Java
Python
TypeScript