Interface CfnTopicRule.CloudwatchAlarmActionProperty

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

@Stability(Stable) public static interface CfnTopicRule.CloudwatchAlarmActionProperty extends software.amazon.jsii.JsiiSerializable
Describes an action that updates a CloudWatch alarm.

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.iot.*;
 CloudwatchAlarmActionProperty cloudwatchAlarmActionProperty = CloudwatchAlarmActionProperty.builder()
         .alarmName("alarmName")
         .roleArn("roleArn")
         .stateReason("stateReason")
         .stateValue("stateValue")
         .build();
 

See Also: