Class: Aws::ECS::Types::AcceleratorTotalMemoryMiBRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::AcceleratorTotalMemoryMiBRequest
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
The minimum and maximum total accelerator memory in mebibytes (MiB) for instance type selection. This is important for GPU workloads that require specific amounts of video memory.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max ⇒ Integer
The maximum total accelerator memory in MiB.
-
#min ⇒ Integer
The minimum total accelerator memory in MiB.
Instance Attribute Details
#max ⇒ Integer
The maximum total accelerator memory in MiB. Instance types with more accelerator memory are excluded from selection.
52 53 54 55 56 57 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 52 class AcceleratorTotalMemoryMiBRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |
#min ⇒ Integer
The minimum total accelerator memory in MiB. Instance types with less accelerator memory are excluded from selection.
52 53 54 55 56 57 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 52 class AcceleratorTotalMemoryMiBRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |