Skip to content

ListTasks

Source: src/AWS/Deadline/ListTasks.ts

Runtime binding for deadline:ListTasks.

Enumerates the tasks of a step in the bound Queue (paginated). The queue’s farmId/queueId are injected from the binding. Provide the implementation with Effect.provide(AWS.Deadline.ListTasksHttp).

// init — bind the operation to the queue
const listTasks = yield* AWS.Deadline.ListTasks(queue);
// runtime
const { tasks } = yield* listTasks({ jobId, stepId });