Amazon ECS · Schema

TaskOverride

The overrides associated with a task.

AmazonAwsContainersDockerEcsOrchestration

Properties

Name Type Description
containerOverrides array
cpu string
memory string
taskRoleArn string
executionRoleArn string
inferenceAcceleratorOverrides array
View JSON Schema on GitHub

JSON Schema

amazon-ecs-task-override-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TaskOverride",
  "type": "object",
  "description": "The overrides associated with a task.",
  "properties": {
    "containerOverrides": {
      "type": "array"
    },
    "cpu": {
      "type": "string"
    },
    "memory": {
      "type": "string"
    },
    "taskRoleArn": {
      "type": "string"
    },
    "executionRoleArn": {
      "type": "string"
    },
    "inferenceAcceleratorOverrides": {
      "type": "array"
    }
  }
}