Class: Aws::AutoScaling::Types::VCpuCountRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AutoScaling::Types::VCpuCountRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-autoscaling/types.rb
Overview
Specifies the minimum and maximum for the ‘VCpuCount` object when you specify [InstanceRequirements] for an Auto Scaling group.
[1]: docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
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.
8303 8304 8305 8306 8307 8308 |
# File 'lib/aws-sdk-autoscaling/types.rb', line 8303 class VCpuCountRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |
#min ⇒ Integer
The minimum number of vCPUs.
8303 8304 8305 8306 8307 8308 |
# File 'lib/aws-sdk-autoscaling/types.rb', line 8303 class VCpuCountRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |