List Lf Tag Expressions
| lakeformation_list_lf_tag_expressions | R Documentation |
Returns the LF-Tag expressions in caller’s account filtered based on caller's permissions¶
Description¶
Returns the LF-Tag expressions in caller’s account filtered based on caller's permissions. Data Lake and read only admins implicitly can see all tag expressions in their account, else caller needs DESCRIBE permissions on tag expression.
Usage¶
lakeformation_list_lf_tag_expressions(CatalogId, MaxResults, NextToken)
Arguments¶
CatalogId |
The identifier for the Data Catalog. By default, the account ID. |
MaxResults |
The maximum number of results to return. |
NextToken |
A continuation token, if this is not the first call to retrieve this list. |
Value¶
A list with the following syntax:
list(
LFTagExpressions = list(
list(
Name = "string",
Description = "string",
CatalogId = "string",
Expression = list(
list(
TagKey = "string",
TagValues = list(
"string"
)
)
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_lf_tag_expressions(
CatalogId = "string",
MaxResults = 123,
NextToken = "string"
)