Class: Aws::Deadline::Types::AcceleratorCountRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::Deadline::Types::AcceleratorCountRange
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-deadline/types.rb
Overview
The range for the GPU fleet acceleration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max ⇒ Integer
The maximum number of GPUs for the accelerator.
-
#min ⇒ Integer
The minimum number of GPUs for the accelerator.
Instance Attribute Details
#max ⇒ Integer
The maximum number of GPUs for the accelerator.
54 55 56 57 58 59 |
# File 'lib/aws-sdk-deadline/types.rb', line 54 class AcceleratorCountRange < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |
#min ⇒ Integer
The minimum number of GPUs for the accelerator. If you set the value to 0, a worker will still have 1 GPU.
54 55 56 57 58 59 |
# File 'lib/aws-sdk-deadline/types.rb', line 54 class AcceleratorCountRange < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |