ListDataAutomationLibraryEntities
Source:
src/AWS/BedrockDataAutomation/ListDataAutomationLibraryEntities.ts
Runtime binding for the ListDataAutomationLibraryEntities operation (IAM
action bedrock:ListDataAutomationLibraryEntities on the library ARN) —
page through the bound library’s entities of a given type from a deployed
Function.
Provide the implementation with
Effect.provide(AWS.BedrockDataAutomation.ListDataAutomationLibraryEntitiesHttp).
Library Entities
Section titled “Library Entities”// deploy time — bind the libraryconst listEntities = yield* AWS.BedrockDataAutomation.ListDataAutomationLibraryEntities(library);
// runtime — first page of vocabulary entitiesconst { entities } = yield* listEntities({ entityType: "VOCABULARY", maxResults: 25,});