list_queues {aws.sqs} | R Documentation |
List SQS queues
list_queues(starts_with = NULL, query = NULL, ...)
starts_with |
An optional character string describing the beginning of the name of queues to retrieve. |
query |
A list specifying additional query arguments to be passed to the |
... |
Additional arguments passed to |
For list_queues
, a list of all SQS queue associated with an AWS
account, or only those starting with a particular character string.
For deadletter_queues
, a list of all SQS queues with a RedrivePolicy
queue attribute configured with a dead letter queue.
If successful, a character vector containing queue URLs. Otherwise, a data structure of class “aws_error” containing any error message(s) from AWS and information about the request attempt.
Thomas J. Leeper
ListQueues ListDeadLetterSourceQueues
## Not run: # list current queues list_queues() ## End(Not run)