0.0
No commit activity in last 3 years
No release in over 3 years
sqs-list-queues lists your SQS queues (working around the 1000 queue limit in the ListQueues API). Options are available to filter by queue name, show message counts, show queue ARNs and/or names, and output as json. Respects $https_proxy.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 2.0
~> 0.1
 Project Readme

sqs-list-queues

List SQS queues, optionally with message counts, queue URLs and ARNs.

Installation

  gem build sqs-list-queues.gemspec
  gem install sqs-list-queues*.gem

Use

Examples:

  # List all queue names
  sqs-list-queues

  # List queues whose names start with either "Foo" or "Bar", showing queue
  # URLs not names:
  sqs-list-queues --url Foo Bar

  # List queues whose names start with "MyQueues", showing message counts:
  sqs-list-queues --counts MyQueues

More options are available; see sqs-list-queues --help.

sqs-list-queues can also be used as a Ruby library. See bin/sqs-list-queues for a guide for how to do this.