Class: Aws::ECS::Types::VCpuCountRangeRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::VCpuCountRangeRequest
- Includes:
- Structure
- Defined in:
- 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.
16668 16669 16670 16671 16672 16673 |
# File 'lib/aws-sdk-ecs/types.rb', line 16668 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.
16668 16669 16670 16671 16672 16673 |
# File 'lib/aws-sdk-ecs/types.rb', line 16668 class VCpuCountRangeRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |