aws.backup.list_tags
Example SQL Queries
SELECT * FROMaws.backup.list_tagsWHERE"resource_arn" = 'VALUE';Description
Returns a list of key-value pairs assigned to a target recovery point, backup plan, or backup vault.
ListTags only works for resource types that support full Backup management of their backups. Those resource types are listed in the "Full Backup management" section of the Feature availability by resource table.
Table Definition
| Column Name | Column Data Type |
|---|---|
| resource_arn Required Input Column An Amazon Resource Name (ARN) that uniquely identifies a resource. The format of the ARN depends on the type of resource. Valid targets for ListTags are recovery points, backup plans, and backup vaults. | VARCHAR |
| max_results Input Column The maximum number of items to be returned. | BIGINT |
| next_token Input Column The next item following a partial list of returned items. For example, if a request is made to return MaxResults number of items, NextToken allows you to return more items in your list starting at the location pointed to by the next token. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| tags To help organize your resources, you can assign your own metadata to the resources you create. Each tag is a key-value pair. | MAP(VARCHAR, VARCHAR) |