ListJobs
Source:
src/AWS/S3Control/ListJobs.ts
Runtime binding for s3:ListJobs (S3 Batch Operations).
Lists the account’s current jobs and the jobs that ended within the last
90 days, optionally filtered by status — e.g. an operations dashboard
summarizing in-flight bulk operations. The account id is resolved once
via sts:GetCallerIdentity. Provide the implementation with
Effect.provide(AWS.S3Control.ListJobsHttp).
Running Batch Operations Jobs
Section titled “Running Batch Operations Jobs”// init — account-level binding, no resource argumentconst listJobs = yield* AWS.S3Control.ListJobs();
// runtimeconst { Jobs } = yield* listJobs({ JobStatuses: ["Active"] });