Skip to content

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

// init — account-level binding takes no resource
const searchDatabases = yield* AWS.LakeFormation.SearchDatabasesByLFTags();
// runtime
const { DatabaseList } = yield* searchDatabases({
Expression: [{ TagKey: "environment", TagValues: ["prod"] }],
});