Class: Aws::ECS::Types::TaskOverride

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ecs/types.rb

Overview

Note:

When making an API call, you may pass TaskOverride data as a hash:

{
  container_overrides: [
    {
      name: "String",
      command: ["String"],
      environment: [
        {
          name: "String",
          value: "String",
        },
      ],
      cpu: 1,
      memory: 1,
      memory_reservation: 1,
      resource_requirements: [
        {
          value: "String", # required
          type: "GPU", # required, accepts GPU
        },
      ],
    },
  ],
  task_role_arn: "String",
  execution_role_arn: "String",
}

The overrides associated with a task.

Instance Attribute Summary collapse

Instance Attribute Details

#container_overridesArray<Types::ContainerOverride>

One or more container overrides sent to a task.

Returns:



6989
6990
6991
6992
6993
6994
# File 'lib/aws-sdk-ecs/types.rb', line 6989

class TaskOverride < Struct.new(
  :container_overrides,
  :task_role_arn,
  :execution_role_arn)
  include Aws::Structure
end

#execution_role_arnString

The Amazon Resource Name (ARN) of the task execution role that the Amazon ECS container agent and the Docker daemon can assume.

Returns:

  • (String)


6989
6990
6991
6992
6993
6994
# File 'lib/aws-sdk-ecs/types.rb', line 6989

class TaskOverride < Struct.new(
  :container_overrides,
  :task_role_arn,
  :execution_role_arn)
  include Aws::Structure
end

#task_role_arnString

The Amazon Resource Name (ARN) of the IAM role that containers in this task can assume. All containers in this task are granted the permissions that are specified in this role.

Returns:

  • (String)


6989
6990
6991
6992
6993
6994
# File 'lib/aws-sdk-ecs/types.rb', line 6989

class TaskOverride < Struct.new(
  :container_overrides,
  :task_role_arn,
  :execution_role_arn)
  include Aws::Structure
end