Class: Aws::AutoScaling::Types::VCpuCountRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AutoScaling::Types::VCpuCountRequest
- Defined in:
- gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb
Overview
Note:
When making an API call, you may pass VCpuCountRequest data as a hash:
{
min: 1, # required
max: 1,
}
Specifies the minimum and maximum for the VCpuCount
object when you
specify InstanceRequirements for an Auto Scaling group.
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.
8969 8970 8971 8972 8973 8974 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 8969 class VCpuCountRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |
#min ⇒ Integer
The minimum number of vCPUs.
8969 8970 8971 8972 8973 8974 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 8969 class VCpuCountRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |