Skip to content

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).

// init — account-level binding takes no resource
const searchTables = yield* AWS.LakeFormation.SearchTablesByLFTags();
// runtime
const { TableList } = yield* searchTables({
Expression: [{ TagKey: "classification", TagValues: ["pii"] }],
});