List Dead Letter Source Queues
sqs_list_dead_letter_source_queues | R Documentation |
Returns a list of your queues that have the RedrivePolicy queue attribute configured with a dead-letter queue¶
Description¶
Returns a list of your queues that have the RedrivePolicy
queue
attribute configured with a dead-letter queue.
The list_dead_letter_source_queues
methods supports pagination. Set
parameter MaxResults
in the request to specify the maximum number of
results to be returned in the response. If you do not set MaxResults
,
the response includes a maximum of 1,000 results. If you set
MaxResults
and there are additional results to display, the response
includes a value for NextToken
. Use NextToken
as a parameter in your
next request to list_dead_letter_source_queues
to receive the next
page of results.
For more information about using dead-letter queues, see Using Amazon SQS Dead-Letter Queues in the Amazon SQS Developer Guide.
Usage¶
sqs_list_dead_letter_source_queues(QueueUrl, NextToken, MaxResults)
Arguments¶
QueueUrl |
[required] The URL of a dead-letter queue. Queue URLs and names are case-sensitive. |
NextToken |
Pagination token to request the next set of results. |
MaxResults |
Maximum number of results to include in the response. Value range
is 1 to 1000. You must set |
Value¶
A list with the following syntax:
list(
queueUrls = list(
"string"
),
NextToken = "string"
)
Request syntax¶
svc$list_dead_letter_source_queues(
QueueUrl = "string",
NextToken = "string",
MaxResults = 123
)