interface EvaluationWindowProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudWatch.CfnAlarm.EvaluationWindowProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudwatch#CfnAlarm_EvaluationWindowProperty |
Java | software.amazon.awscdk.services.cloudwatch.CfnAlarm.EvaluationWindowProperty |
Python | aws_cdk.aws_cloudwatch.CfnAlarm.EvaluationWindowProperty |
TypeScript | aws-cdk-lib » aws_cloudwatch » CfnAlarm » 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-lib';
declare const slidingWindow: any;
const evaluationWindowProperty: cloudwatch.CfnAlarm.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