queue_tags
Creates, updates, deletes, gets or lists a queue_tags resource.
Overview
| Name | queue_tags |
| Type | Resource |
| Id | aws.sqs.queue_tags |
Fields
The following fields are returned by SELECT queries:
- list_queue_tags
| Name | Datatype | Description |
|---|---|---|
tags | object | The list of all tags added to the specified queue. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_queue_tags | select | region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_queue_tags
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
;