Job

A rendering job submitted to a queue in Amazon Deadline Cloud.

ComputeMediaRenderingVisual Effects

Properties

Name Type Description
jobId string The unique identifier of the job
queueId string
farmId string
displayName string
lifecycleStatus string
taskRunStatus string
priority integer
createdAt string
View JSON Schema on GitHub

JSON Schema

job-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-deadline-cloud/json-schema/job-schema.json",
  "title": "Job",
  "description": "A rendering job submitted to a queue in Amazon Deadline Cloud.",
  "type": "object",
  "properties": {
    "jobId": {
      "type": "string",
      "description": "The unique identifier of the job"
    },
    "queueId": {
      "type": "string"
    },
    "farmId": {
      "type": "string"
    },
    "displayName": {
      "type": "string"
    },
    "lifecycleStatus": {
      "type": "string"
    },
    "taskRunStatus": {
      "type": "string"
    },
    "priority": {
      "type": "integer"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}