Java com.amazonaws.services.sqs.model SendMessageRequest fields, constructors, methods, implement or subclass

Example usage for Java com.amazonaws.services.sqs.model SendMessageRequest fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.amazonaws.services.sqs.model SendMessageRequest.

The text is from its open source code.

Constructor

SendMessageRequest(String queueUrl, String messageBody)
Constructs a new SendMessageRequest object.
SendMessageRequest()
Default constructor for SendMessageRequest object.

Method

SendMessageRequestaddMessageAttributesEntry(String key, MessageAttributeValue value)
java.util.MapgetMessageAttributes()

Each message attribute consists of a Name, Type, and Value.

StringgetMessageBody()

The message to send.

StringgetQueueUrl()

The URL of the Amazon SQS queue to which a message is sent.

RequestClientOptionsgetRequestClientOptions()
Gets the options stored with this request object.
voidsetDelaySeconds(Integer delaySeconds)

The length of time, in seconds, for which to delay a specific message.

voidsetMessageAttributes(java.util.Map messageAttributes)

Each message attribute consists of a Name, Type, and Value.

voidsetMessageBody(String messageBody)

The message to send.

voidsetQueueUrl(String queueUrl)

The URL of the Amazon SQS queue to which a message is sent.

SendMessageRequestwithDelaySeconds(Integer delaySeconds)

The length of time, in seconds, for which to delay a specific message.

SendMessageRequestwithMessageAttributes( java.util.Map messageAttributes)

Each message attribute consists of a Name, Type, and Value.

SendMessageRequestwithMessageBody(String messageBody)

The message to send.

SendMessageRequestwithMessageDeduplicationId(String messageDeduplicationId)

This parameter applies only to FIFO (first-in-first-out) queues.

SendMessageRequestwithMessageGroupId(String messageGroupId)

This parameter applies only to FIFO (first-in-first-out) queues.

SendMessageRequestwithQueueUrl(String queueUrl)

The URL of the Amazon SQS queue to which a message is sent.