Interface CfnAlarmMuteRuleProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAlarmMuteRuleProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-02T12:05:05.132Z") @Stability(Stable) public interface CfnAlarmMuteRuleProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnAlarmMuteRule.

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.*;
 CfnAlarmMuteRuleProps cfnAlarmMuteRuleProps = CfnAlarmMuteRuleProps.builder()
         .rule(RuleProperty.builder()
                 .schedule(ScheduleProperty.builder()
                         .duration("duration")
                         .expression("expression")
                         // the properties below are optional
                         .timezone("timezone")
                         .build())
                 .build())
         // the properties below are optional
         .description("description")
         .expireDate("expireDate")
         .muteTargets(MuteTargetsProperty.builder()
                 .alarmNames(List.of("alarmNames"))
                 .build())
         .name("name")
         .startDate("startDate")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: