SearchTablesByLFTags
Source:
src/AWS/LakeFormation/SearchTablesByLFTags.ts
Runtime binding for lakeformation:SearchTablesByLFTags.
Finds Glue tables whose LF-tags match an expression — tag-driven data
discovery at runtime. Provide the implementation with
Effect.provide(AWS.LakeFormation.SearchTablesByLFTagsHttp).
Searching by LF-Tags
Section titled “Searching by LF-Tags”// init — account-level binding takes no resourceconst searchTables = yield* AWS.LakeFormation.SearchTablesByLFTags();
// runtimeconst { TableList } = yield* searchTables({ Expression: [{ TagKey: "classification", TagValues: ["pii"] }],});