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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTopicRule.SqsActionProperty
static final class
An 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.- See Also:
-
getRoleArn
The ARN of the IAM role that grants access.- See Also:
-
getUseBase64
Specifies whether to use Base64 encoding.- See Also:
-
builder
-