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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAlarm.EvaluationWindowPropertystatic final classAn implementation forCfnAlarm.EvaluationWindowProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectConfiguration for sliding evaluation window (default behavior).default ObjectReturns union: eitherIResolvableorCfnAlarm.WallClockWindowPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSlidingWindow
Configuration for sliding evaluation window (default behavior).- See Also:
-
getWallClockWindow
Returns union: eitherIResolvableorCfnAlarm.WallClockWindowProperty- See Also:
-
builder
-