Search Databases By Lf Tags
| lakeformation_search_databases_by_lf_tags | R Documentation |
This operation allows a search on DATABASE resources by TagCondition¶
Description¶
This operation allows a search on DATABASE resources by
TagCondition. This operation is used by admins who want to grant user
permissions on certain TagConditions. Before making a grant, the admin
can use SearchDatabasesByTags to find all resources where the given
TagConditions are valid to verify whether the returned resources can
be shared.
Usage¶
lakeformation_search_databases_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",
DatabaseList = list(
list(
Database = list(
CatalogId = "string",
Name = "string"
),
LFTags = list(
list(
CatalogId = "string",
TagKey = "string",
TagValues = list(
"string"
)
)
)
)
)
)
Request syntax¶
svc$search_databases_by_lf_tags(
NextToken = "string",
MaxResults = 123,
CatalogId = "string",
Expression = list(
list(
TagKey = "string",
TagValues = list(
"string"
)
)
)
)