Skip to main content

resource_lf_tags

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

Overview

Nameresource_lf_tags
TypeResource
Idaws.lakeformation.resource_lf_tags

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
lf_tag_on_databasearrayA list of LF-tags applied to a database resource.
lf_tags_on_columnsarrayA list of LF-tags applied to a column resource.
lf_tags_on_tablearrayA list of LF-tags applied to a table resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_resource_lf_tagsselectregionReturns the LF-tags applied to a 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
regionstringAWS region (default: us-east-1)

SELECT examples

Returns the LF-tags applied to a resource.

SELECT
lf_tag_on_database,
lf_tags_on_columns,
lf_tags_on_table
FROM aws.lakeformation.resource_lf_tags
WHERE region = '{{ region }}' -- required
;