Search Tables By Lf Tags
| lakeformation_search_tables_by_lf_tags | R Documentation |
This operation allows a search on TABLE resources by LFTags¶
Description¶
This operation allows a search on TABLE resources by LFTags. This
will be used by admins who want to grant user permissions on certain
LF-tags. Before making a grant, the admin can use
search_tables_by_lf_tags to find all resources where the given
LFTags are valid to verify whether the returned resources can be
shared.
Usage¶
lakeformation_search_tables_by_lf_tags(NextToken, MaxResults, CatalogId,
Expression)
Arguments¶
NextToken |
A continuation token, if this is not the first call to retrieve this list. |
MaxResults |
The maximum number of results to return. |
CatalogId |
The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment. |
Expression |
[required] A list of conditions ( |
Value¶
A list with the following syntax:
list(
NextToken = "string",
TableList = list(
list(
Table = list(
CatalogId = "string",
DatabaseName = "string",
Name = "string",
TableWildcard = list()
),
LFTagOnDatabase = list(
list(
CatalogId = "string",
TagKey = "string",
TagValues = list(
"string"
)
)
),
LFTagsOnTable = list(
list(
CatalogId = "string",
TagKey = "string",
TagValues = list(
"string"
)
)
),
LFTagsOnColumns = list(
list(
Name = "string",
LFTags = list(
list(
CatalogId = "string",
TagKey = "string",
TagValues = list(
"string"
)
)
)
)
)
)
)
)
Request syntax¶
svc$search_tables_by_lf_tags(
NextToken = "string",
MaxResults = 123,
CatalogId = "string",
Expression = list(
list(
TagKey = "string",
TagValues = list(
"string"
)
)
)
)