Skip to main content

tags

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

Overview

Nametags
TypeResource
Idaws.chime_sdk_identity.tags

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
tagsarrayThe tag key-value pairs.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_tags_for_resourceselectarn, regionLists the tags applied to an Amazon Chime SDK identity resource.
untag_resourceupdateregion, ResourceARN, TagKeysRemoves the specified tags from the specified Amazon Chime SDK identity resource.
tag_resourceupdateregion, ResourceARNApplies the specified tags to the specified Amazon Chime SDK identity resource.

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
arnstringThe ARN of the resource.
regionstringAWS region (default: us-east-1)

SELECT examples

Lists the tags applied to an Amazon Chime SDK identity resource.

SELECT
tags
FROM aws.chime_sdk_identity.tags
WHERE arn = '{{ arn }}' -- required
AND region = '{{ region }}' -- required
;

UPDATE examples

Removes the specified tags from the specified Amazon Chime SDK identity resource.

UPDATE aws.chime_sdk_identity.tags
SET
ResourceARN = '{{ ResourceARN }}',
TagKeys = '{{ TagKeys }}'
WHERE
region = '{{ region }}' --required
AND ResourceARN = '{{ ResourceARN }}' --required
AND TagKeys = '{{ TagKeys }}' --required;