Skip to main content

queue_tags

Creates, updates, deletes, gets or lists a queue_tags resource.

Overview

Namequeue_tags
TypeResource
Idaws.sqs.queue_tags

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
tagsobjectThe list of all tags added to the specified queue.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_queue_tagsselectregionList all cost allocation tags added to the specified Amazon SQS queue. For an overview, see Tagging Your Amazon SQS Queues in the Amazon SQS Developer Guide. Cross-account permissions don't apply to this action. For more information, see Grant cross-account permissions to a role and a username in the Amazon SQS Developer Guide.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

List all cost allocation tags added to the specified Amazon SQS queue. For an overview, see Tagging Your Amazon SQS Queues in the Amazon SQS Developer Guide. Cross-account permissions don't apply to this action. For more information, see Grant cross-account permissions to a role and a username in the Amazon SQS Developer Guide.

SELECT
tags
FROM aws.sqs.queue_tags
WHERE region = '{{ region }}' -- required
;