ListJobRuns
Source:
src/AWS/EMRServerless/ListJobRuns.ts
Runtime binding for emr-serverless:ListJobRuns.
Enumerates job runs on the bound Application, optionally filtered
by state, creation window, or mode — so a function can report on running
or recently failed jobs. Provide the implementation with
Effect.provide(AWS.EMRServerless.ListJobRunsHttp).
Running Jobs
Section titled “Running Jobs”// initconst listJobRuns = yield* AWS.EMRServerless.ListJobRuns(app);
// runtimeconst { jobRuns } = yield* listJobRuns({ states: ["RUNNING"] });