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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTopicRule.SqsActionPropertystatic final classAn implementation forCfnTopicRule.SqsActionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getQueueUrl
The URL of the Amazon SQS queue. -
getRoleArn
The ARN of the IAM role that grants access. -
getUseBase64
Specifies whether to use Base64 encoding. -
builder
-