Interface CfnTopicRule.SqsActionProperty

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

@Stability(Stable) public static interface CfnTopicRule.SqsActionProperty extends software.amazon.jsii.JsiiSerializable
Describes an action to publish data to an Amazon SQS queue.

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.*;
 SqsActionProperty sqsActionProperty = SqsActionProperty.builder()
         .queueUrl("queueUrl")
         .roleArn("roleArn")
         // the properties below are optional
         .useBase64(false)
         .build();