Interface CfnAlarmMuteRule.RuleProperty

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

@Stability(Stable) public static interface CfnAlarmMuteRule.RuleProperty extends software.amazon.jsii.JsiiSerializable
The rule for the mute.

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.*;
 RuleProperty ruleProperty = RuleProperty.builder()
         .schedule(ScheduleProperty.builder()
                 .duration("duration")
                 .expression("expression")
                 // the properties below are optional
                 .timezone("timezone")
                 .build())
         .build();
 

See Also: