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 SearchTablesByLFTags to find all resources where the given LFTags are valid to verify whether the returned resources can be shared.
example
Use a bare-bones client and the command you need to make an API call.
This operation allows a search on
TABLE
resources byLFTag
s. This will be used by admins who want to grant user permissions on certain LF-tags. Before making a grant, the admin can useSearchTablesByLFTags
to find all resources where the givenLFTag
s are valid to verify whether the returned resources can be shared.Use a bare-bones client and the command you need to make an API call.
import { LakeFormationClient, SearchTablesByLFTagsCommand } from "@aws-sdk/client-lakeformation"; // ES Modules import // const { LakeFormationClient, SearchTablesByLFTagsCommand } = require("@aws-sdk/client-lakeformation"); // CommonJS import const client = new LakeFormationClient(config); const command = new SearchTablesByLFTagsCommand(input); const response = await client.send(command);
SearchTablesByLFTagsCommandInput for command's
input
shape.SearchTablesByLFTagsCommandOutput for command's
response
shape.config for LakeFormationClient's
config
shape.