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