Skip to content

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

// deploy time — bind the library
const listJobs =
yield* AWS.BedrockDataAutomation.ListDataAutomationLibraryIngestionJobs(library);
// runtime — first page of jobs
const { jobs } = yield* listJobs({ maxResults: 25 });