Class: Aws::ECS::Types::MemoryGiBPerVCpuRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::MemoryGiBPerVCpuRequest
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
The minimum and maximum amount of memory per vCPU in gibibytes (GiB). This helps ensure that instance types have the appropriate memory-to-CPU ratio for your workloads.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max ⇒ Float
The maximum amount of memory per vCPU in GiB.
-
#min ⇒ Float
The minimum amount of memory per vCPU in GiB.
Instance Attribute Details
#max ⇒ Float
The maximum amount of memory per vCPU in GiB. Instance types with a higher memory-to-vCPU ratio are excluded from selection.
8248 8249 8250 8251 8252 8253 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 8248 class MemoryGiBPerVCpuRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |
#min ⇒ Float
The minimum amount of memory per vCPU in GiB. Instance types with a lower memory-to-vCPU ratio are excluded from selection.
8248 8249 8250 8251 8252 8253 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 8248 class MemoryGiBPerVCpuRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |