Interface CfnAlarmMuteRuleMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAlarmMuteRuleMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.177Z")
@Stability(Stable)
public interface CfnAlarmMuteRuleMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnAlarmMuteRulePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.cloudwatch.*;
CfnAlarmMuteRuleMixinProps cfnAlarmMuteRuleMixinProps = CfnAlarmMuteRuleMixinProps.builder()
.description("description")
.expireDate("expireDate")
.muteTargets(MuteTargetsProperty.builder()
.alarmNames(List.of("alarmNames"))
.build())
.name("name")
.rule(RuleProperty.builder()
.schedule(ScheduleProperty.builder()
.duration("duration")
.expression("expression")
.timezone("timezone")
.build())
.build())
.startDate("startDate")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAlarmMuteRuleMixinPropsstatic final classAn implementation forCfnAlarmMuteRuleMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe description of the AlarmMuteRule.default StringThe date, with the same timezone offset as "ScheduleTimezone" after which the alarm mute rule will be expired.default ObjectTargets to be muted.default StringgetName()The name of the AlarmMuteRule.default ObjectgetRule()The rule for the mute.default StringThe date, with the same timezone offset as "ScheduleTimezone", after which the alarm mute rule will become active.getTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The description of the AlarmMuteRule.- See Also:
-
getExpireDate
The date, with the same timezone offset as "ScheduleTimezone" after which the alarm mute rule will be expired.- See Also:
-
getMuteTargets
Targets to be muted.Returns union: either
IResolvableorCfnAlarmMuteRulePropsMixin.MuteTargetsProperty- See Also:
-
getName
The name of the AlarmMuteRule.- See Also:
-
getRule
The rule for the mute.Returns union: either
IResolvableorCfnAlarmMuteRulePropsMixin.RuleProperty- See Also:
-
getStartDate
The date, with the same timezone offset as "ScheduleTimezone", after which the alarm mute rule will become active.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
builder
- Returns:
- a
CfnAlarmMuteRuleMixinProps.BuilderofCfnAlarmMuteRuleMixinProps
-