resource_lf_tags
Creates, updates, deletes, gets or lists a resource_lf_tags resource.
Overview
| Name | resource_lf_tags |
| Type | Resource |
| Id | aws.lakeformation.resource_lf_tags |
Fields
The following fields are returned by SELECT queries:
- get_resource_lf_tags
| Name | Datatype | Description |
|---|---|---|
lf_tag_on_database | array | A list of LF-tags applied to a database resource. |
lf_tags_on_columns | array | A list of LF-tags applied to a column resource. |
lf_tags_on_table | array | A list of LF-tags applied to a table resource. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_resource_lf_tags | select | region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_resource_lf_tags
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
;