Create Fleet Request

Request body for creating a compute fleet.

ComputeMediaRenderingVisual Effects

Properties

Name Type Description
displayName string
description string
roleArn string
configuration object
minWorkerCount integer
maxWorkerCount integer
View JSON Schema on GitHub

JSON Schema

create-fleet-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-deadline-cloud/json-schema/create-fleet-request-schema.json",
  "title": "Create Fleet Request",
  "description": "Request body for creating a compute fleet.",
  "type": "object",
  "required": [
    "displayName",
    "roleArn",
    "configuration"
  ],
  "properties": {
    "displayName": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "roleArn": {
      "type": "string"
    },
    "configuration": {
      "type": "object"
    },
    "minWorkerCount": {
      "type": "integer"
    },
    "maxWorkerCount": {
      "type": "integer"
    }
  }
}