@Stability(value=Stable)
public static interface CfnDetectorModel.SqsProperty
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.iotevents.*;
SqsProperty sqsProperty = SqsProperty.builder()
.queueUrl("queueUrl")
// the properties below are optional
.payload(PayloadProperty.builder()
.contentExpression("contentExpression")
.type("type")
.build())
.useBase64(false)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDetectorModel.SqsProperty.Builder
A builder for
CfnDetectorModel.SqsProperty |
static class |
CfnDetectorModel.SqsProperty.Jsii$Proxy
An implementation for
CfnDetectorModel.SqsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDetectorModel.SqsProperty.Builder |
builder() |
default Object |
getPayload()
You can configure the action payload when you send a message to an Amazon SQS queue.
|
String |
getQueueUrl()
The URL of the SQS queue where the data is written.
|
default Object |
getUseBase64()
Set this to TRUE if you want the data to be base-64 encoded before it is written to the queue.
|
@Stability(value=Stable) @NotNull String getQueueUrl()
@Stability(value=Stable) @Nullable default Object getPayload()
@Stability(value=Stable) @Nullable default Object getUseBase64()
Otherwise, set this to FALSE.
@Stability(value=Stable) static CfnDetectorModel.SqsProperty.Builder builder()
Copyright © 2022. All rights reserved.