Interface CfnAlarm.EvaluationWindowProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAlarm.EvaluationWindowProperty.Jsii$Proxy
Enclosing class:
CfnAlarm

@Stability(Stable) public static interface CfnAlarm.EvaluationWindowProperty extends software.amazon.jsii.JsiiSerializable
Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.cloudwatch.*;
 Object slidingWindow;
 EvaluationWindowProperty evaluationWindowProperty = EvaluationWindowProperty.builder()
         .slidingWindow(slidingWindow)
         .wallClockWindow(WallClockWindowProperty.builder()
                 .timezone("timezone")
                 .build())
         .build();
 

See Also: