@Generated(value="jsii-pacmak/1.72.0 (build 4b8828b)", date="2023-01-03T16:22:40.732Z") @Stability(value=Deprecated) @Deprecated public interface SendToQueueProps 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.stepfunctions.*;
import software.amazon.awscdk.services.stepfunctions.tasks.*;
import software.amazon.awscdk.core.*;
TaskInput taskInput;
SendToQueueProps sendToQueueProps = SendToQueueProps.builder()
.messageBody(taskInput)
// the properties below are optional
.delay(Duration.minutes(30))
.integrationPattern(ServiceIntegrationPattern.FIRE_AND_FORGET)
.messageDeduplicationId("messageDeduplicationId")
.messageGroupId("messageGroupId")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
SendToQueueProps.Builder
Deprecated.
|
static class |
SendToQueueProps.Jsii$Proxy
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static SendToQueueProps.Builder |
builder()
Deprecated.
|
default Duration |
getDelay()
Deprecated.
|
default ServiceIntegrationPattern |
getIntegrationPattern()
Deprecated.
|
TaskInput |
getMessageBody()
Deprecated.
|
default String |
getMessageDeduplicationId()
Deprecated.
|
default String |
getMessageGroupId()
Deprecated.
|
@Stability(value=Deprecated) @Deprecated @NotNull TaskInput getMessageBody()
@Stability(value=Deprecated) @Deprecated @Nullable default Duration getDelay()
Valid values are 0-900 seconds.
Default: Default value of the queue is used
@Stability(value=Deprecated) @Deprecated @Nullable default ServiceIntegrationPattern getIntegrationPattern()
The valid value is either FIRE_AND_FORGET or WAIT_FOR_TASK_TOKEN.
Default: FIRE_AND_FORGET
@Stability(value=Deprecated) @Deprecated @Nullable default String getMessageDeduplicationId()
Default: Use content-based deduplication
@Stability(value=Deprecated) @Deprecated @Nullable default String getMessageGroupId()
Required for FIFO queues. FIFO ordering applies to messages in the same message group.
Default: No group ID
@Stability(value=Deprecated) @Deprecated static SendToQueueProps.Builder builder()
SendToQueueProps.Builder of SendToQueuePropsCopyright © 2023. All rights reserved.