ListIngestionJobs
Source:
src/AWS/Bedrock/ListIngestionJobs.ts
Runtime binding for bedrock-agent:ListIngestionJobs — list the ingestion
jobs that have run against the bound DataSource, optionally
filtered and sorted.
The binding grants the function bedrock:ListIngestionJobs scoped to the
data source’s parent knowledge base.
Syncing a Data Source
Section titled “Syncing a Data Source”// initconst listIngestionJobs = yield* Bedrock.ListIngestionJobs(dataSource);
// runtimeconst { ingestionJobSummaries } = yield* listIngestionJobs({ sortBy: { attribute: "STARTED_AT", order: "DESCENDING" }, maxResults: 10,});