Skip to main content

tags

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

Overview

Nametags
TypeResource
Idaws.datapipeline.tags

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
add_tagsupdateregion, pipelineId, tagsAdds or modifies tags for the specified pipeline.
remove_tagsupdateregion, pipelineId, tagKeysRemoves existing tags from the specified pipeline.

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)

UPDATE examples

Adds or modifies tags for the specified pipeline.

UPDATE aws.datapipeline.tags
SET
pipelineId = '{{ pipelineId }}',
tags = '{{ tags }}'
WHERE
region = '{{ region }}' --required
AND pipelineId = '{{ pipelineId }}' --required
AND tags = '{{ tags }}' --required;