CreateJob
Source:
src/AWS/Deadline/CreateJob.ts
Runtime binding for deadline:CreateJob.
Submits a render job to the bound Queue — the data-plane entry
point of Deadline Cloud. The job template is an Open Job Description
(OJD) document (JSON or YAML). The queue’s farmId/queueId are
injected from the binding. Provide the implementation with
Effect.provide(AWS.Deadline.CreateJobHttp).
Submitting Jobs
Section titled “Submitting Jobs”// init — bind the operation to the queueconst createJob = yield* AWS.Deadline.CreateJob(queue);
// runtimeconst { jobId } = yield* createJob({ template: JSON.stringify(jobTemplate), templateType: "JSON", priority: 50,});