Class: Aws::ECS::Types::PlatformDevice
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::PlatformDevice
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
The devices that are available on the container instance. The only supported device type is a GPU.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The ID for the GPUs on the container instance.
-
#type ⇒ String
The type of device that's available on the container instance.
Instance Attribute Details
#id ⇒ String
The ID for the GPUs on the container instance. The available GPU IDs
can also be obtained on the container instance in the
/var/lib/ecs/gpu/nvidia_gpu_info.json
file.
7517 7518 7519 7520 7521 7522 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 7517 class PlatformDevice < Struct.new( :id, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of device that's available on the container instance. The
only supported value is GPU
.
7517 7518 7519 7520 7521 7522 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 7517 class PlatformDevice < Struct.new( :id, :type) SENSITIVE = [] include Aws::Structure end |