@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-03-22T19:35:50.424Z")
@Deprecated
public interface SendToQueueProps
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 java.lang.String |
getMessageDeduplicationId()
Deprecated.
|
default java.lang.String |
getMessageGroupId()
Deprecated.
|
@Deprecated TaskInput getMessageBody()
@Deprecated default Duration getDelay()
Valid values are 0-900 seconds.
Default: Default value of the queue is used
@Deprecated default ServiceIntegrationPattern getIntegrationPattern()
The valid value is either FIRE_AND_FORGET or WAIT_FOR_TASK_TOKEN.
Default: FIRE_AND_FORGET
@Deprecated default java.lang.String getMessageDeduplicationId()
Default: Use content-based deduplication
@Deprecated default java.lang.String getMessageGroupId()
Required for FIFO queues. FIFO ordering applies to messages in the same message group.
Default: No group ID
@Deprecated static SendToQueueProps.Builder builder()
SendToQueueProps.Builder
of SendToQueueProps