Class: Aws::ECS::Types::ResourceRequirement

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 ResourceRequirement data as a hash:

{
  value: "String", # required
  type: "GPU", # required, accepts GPU
}

The type and amount of a resource to assign to a container. The only supported resource is a GPU. For more information, see [Working with GPUs on Amazon ECS] in the *Amazon Elastic Container Service Developer Guide*

[1]: docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-gpu.html

Instance Attribute Summary collapse

Instance Attribute Details

#typeString

The type of resource to assign to a container. The only supported value is ‘GPU`.

Returns:

  • (String)


5263
5264
5265
5266
5267
# File 'lib/aws-sdk-ecs/types.rb', line 5263

class ResourceRequirement < Struct.new(
  :value,
  :type)
  include Aws::Structure
end

#valueString

The number of physical ‘GPUs` the Amazon ECS container agent will reserve for the container. The number of GPUs reserved for all containers in a task should not exceed the number of available GPUs on the container instance the task is launched on.

Returns:

  • (String)


5263
5264
5265
5266
5267
# File 'lib/aws-sdk-ecs/types.rb', line 5263

class ResourceRequirement < Struct.new(
  :value,
  :type)
  include Aws::Structure
end