salt.modules.aws_sqs
Support for the Amazon Simple Queue Service.
-
salt.modules.aws_sqs.create_queue(name, region, opts=None, user=None)
Creates a queue with the correct name.
- name
- Name of the SQS queue to create
- region
- Region to create the SQS queue in
- opts : None
- Any additional options to add to the command line
- user : None
- Run hg as a user other than what the minion runs as
-
salt.modules.aws_sqs.delete_queue(name, region, opts=None, user=None)
Deletes a queue in the region.
- name
- Name of the SQS queue to deletes
- region
- Name of the region to delete the queue from
- opts : None
- Any additional options to add to the command line
- user : None
- Run hg as a user other than what the minion runs as
-
salt.modules.aws_sqs.list_queues(region, opts=None, user=None)
List the queues in the selected region.
- region
- Region to list SQS queues for
- opts : None
- Any additional options to add to the command line
- user : None
- Run hg as a user other than what the minion runs as
-
salt.modules.aws_sqs.queue_exists(name, region, opts=None, user=None)
Returns True or False on whether the queue exists in the region
- name
- Name of the SQS queue to search for
- region
- Name of the region to search for the queue in
- opts : None
- Any additional options to add to the command line
- user : None
- Run hg as a user other than what the minion runs as