Class: Aws::ECS::Types::VCpuCountRangeRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::VCpuCountRangeRequest
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
The minimum and maximum number of vCPUs for instance type selection. This allows you to specify a range of vCPU counts that meet your workload requirements.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max ⇒ Integer
The maximum number of vCPUs.
-
#min ⇒ Integer
The minimum number of vCPUs.
Instance Attribute Details
#max ⇒ Integer
The maximum number of vCPUs. Instance types with more vCPUs than this value are excluded from selection.
15173 15174 15175 15176 15177 15178 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 15173 class VCpuCountRangeRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |
#min ⇒ Integer
The minimum number of vCPUs. Instance types with fewer vCPUs than this value are excluded from selection.
15173 15174 15175 15176 15177 15178 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 15173 class VCpuCountRangeRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |