Interface SendToQueueProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SendToQueueProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:48.204Z")
@Stability(Deprecated)
@Deprecated
public interface SendToQueueProps
extends software.amazon.jsii.JsiiSerializable
Deprecated.
(deprecated) Properties for SendMessageTask.
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classDeprecated.static final classDeprecated. -
Method Summary
Modifier and TypeMethodDescriptionstatic SendToQueueProps.Builderbuilder()Deprecated.default DurationgetDelay()Deprecated.default ServiceIntegrationPatternDeprecated.Deprecated.default StringDeprecated.default StringDeprecated.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMessageBody
Deprecated.(deprecated) The text message to send to the queue. -
getDelay
Deprecated.(deprecated) The length of time, in seconds, for which to delay a specific message.Valid values are 0-900 seconds.
Default: Default value of the queue is used
-
getIntegrationPattern
@Stability(Deprecated) @Deprecated @Nullable default ServiceIntegrationPattern getIntegrationPattern()Deprecated.(deprecated) The service integration pattern indicates different ways to call SendMessage to SQS.The valid value is either FIRE_AND_FORGET or WAIT_FOR_TASK_TOKEN.
Default: FIRE_AND_FORGET
-
getMessageDeduplicationId
Deprecated.(deprecated) The token used for deduplication of sent messages.Default: Use content-based deduplication
-
getMessageGroupId
Deprecated.(deprecated) The tag that specifies that a message belongs to a specific message group.Required for FIFO queues. FIFO ordering applies to messages in the same message group.
Default: No group ID
-
builder
Deprecated.- Returns:
- a
SendToQueueProps.BuilderofSendToQueueProps
-
SqsSendMessage