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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAlarmMuteRule.RulePropertystatic final classAn implementation forCfnAlarmMuteRule.RuleProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSchedule
Schedule for the mute to be active.Returns union: either
IResolvableorCfnAlarmMuteRule.ScheduleProperty- See Also:
-
builder
-