Fleet

A compute fleet in a render farm providing worker capacity for jobs.

ComputeMediaRenderingVisual Effects

Properties

Name Type Description
fleetId string The unique identifier of the fleet
farmId string
displayName string
status string
workerCount integer
roleArn string The ARN of the IAM role for the fleet
createdAt string
View JSON Schema on GitHub

JSON Schema

fleet-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-deadline-cloud/json-schema/fleet-schema.json",
  "title": "Fleet",
  "description": "A compute fleet in a render farm providing worker capacity for jobs.",
  "type": "object",
  "properties": {
    "fleetId": {
      "type": "string",
      "description": "The unique identifier of the fleet"
    },
    "farmId": {
      "type": "string"
    },
    "displayName": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "workerCount": {
      "type": "integer"
    },
    "roleArn": {
      "type": "string",
      "description": "The ARN of the IAM role for the fleet"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}