Interface CfnTopicRule.SnsActionProperty

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

@Stability(Stable) public static interface CfnTopicRule.SnsActionProperty extends software.amazon.jsii.JsiiSerializable
Describes an action to publish to an Amazon SNS topic.

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.*;
 SnsActionProperty snsActionProperty = SnsActionProperty.builder()
         .roleArn("roleArn")
         .targetArn("targetArn")
         // the properties below are optional
         .messageFormat("messageFormat")
         .build();
 

See Also: