list_queues {aws.sqs}R Documentation

List queues

Description

List SQS queues

Usage

list_queues(starts_with = NULL, query = NULL, ...)

Arguments

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 query argument of sqsHTTP.

...

Additional arguments passed to sqsHTTP.

Details

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.

Value

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.

Author(s)

Thomas J. Leeper

References

ListQueues ListDeadLetterSourceQueues

Examples

## Not run: 
  # list current queues
  list_queues()

## End(Not run)

[Package aws.sqs version 0.1.10 Index]