View source: R/sqs_operations.R
sqs_receive_message | R Documentation |
Retrieves one or more messages (up to 10), from the specified queue. Using the WaitTimeSeconds
parameter enables long-poll support. For more information, see Amazon SQS Long Polling in the Amazon SQS Developer Guide.
See https://www.paws-r-sdk.com/docs/sqs_receive_message/ for full documentation.
sqs_receive_message(
QueueUrl,
AttributeNames = NULL,
MessageSystemAttributeNames = NULL,
MessageAttributeNames = NULL,
MaxNumberOfMessages = NULL,
VisibilityTimeout = NULL,
WaitTimeSeconds = NULL,
ReceiveRequestAttemptId = NULL
)
QueueUrl |
[required] The URL of the Amazon SQS queue from which messages are received. Queue URLs and names are case-sensitive. |
AttributeNames |
This parameter has been deprecated but will be supported for backward
compatibility. To provide attribute names, you are encouraged to use
A list of attributes that need to be returned along with each message. These attributes include:
|
MessageSystemAttributeNames |
A list of attributes that need to be returned along with each message. These attributes include:
|
MessageAttributeNames |
The name of the message attribute, where N is the index.
When using |
MaxNumberOfMessages |
The maximum number of messages to return. Amazon SQS never returns more messages than this value (however, fewer messages might be returned). Valid values: 1 to 10. Default: 1. |
VisibilityTimeout |
The duration (in seconds) that the received messages are hidden from
subsequent retrieve requests after being retrieved by a
|
WaitTimeSeconds |
The duration (in seconds) for which the call waits for a message to
arrive in the queue before returning. If a message is available, the
call returns sooner than To avoid HTTP errors, ensure that the HTTP response timeout for
|
ReceiveRequestAttemptId |
This parameter applies only to FIFO (first-in-first-out) queues. The token used for deduplication of
The maximum length of For best practices of using []: R:%5C [Using the ReceiveRequestAttemptId Request Parameter]: R:Using%20the%0AReceiveRequestAttemptId%20Request%0AParameter |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.