Skip to content

GetStep

Source: src/AWS/Deadline/GetStep.ts

Runtime binding for deadline:GetStep.

Reads a step’s detail for a job in the bound Queue — lifecycle status, task run status counts, dependency counts, parameter space. The queue’s farmId/queueId are injected from the binding. Provide the implementation with Effect.provide(AWS.Deadline.GetStepHttp).

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