@Stability(value=Stable)
public static interface CfnTopicRule.SqsActionProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnTopicRule.SqsActionProperty.Builder
A builder for
CfnTopicRule.SqsActionProperty |
static class |
CfnTopicRule.SqsActionProperty.Jsii$Proxy
An implementation for
CfnTopicRule.SqsActionProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnTopicRule.SqsActionProperty.Builder |
builder() |
String |
getQueueUrl()
The URL of the Amazon SQS queue.
|
String |
getRoleArn()
The ARN of the IAM role that grants access.
|
default Object |
getUseBase64()
Specifies whether to use Base64 encoding.
|
@Stability(value=Stable) @NotNull String getQueueUrl()
@Stability(value=Stable) @NotNull String getRoleArn()
@Stability(value=Stable) @Nullable default Object getUseBase64()
@Stability(value=Stable) static CfnTopicRule.SqsActionProperty.Builder builder()
Copyright © 2022. All rights reserved.