ListDataAutomationLibraryIngestionJobs
Source:
src/AWS/BedrockDataAutomation/ListDataAutomationLibraryIngestionJobs.ts
Runtime binding for the ListDataAutomationLibraryIngestionJobs operation
(IAM action bedrock:ListDataAutomationLibraryIngestionJobs on the
library ARN) — page through the bound library’s ingestion jobs from a
deployed Function.
Provide the implementation with
Effect.provide(AWS.BedrockDataAutomation.ListDataAutomationLibraryIngestionJobsHttp).
Library Ingestion
Section titled “Library Ingestion”// deploy time — bind the libraryconst listJobs = yield* AWS.BedrockDataAutomation.ListDataAutomationLibraryIngestionJobs(library);
// runtime — first page of jobsconst { jobs } = yield* listJobs({ maxResults: 25 });