Class: Aws::EC2::Types::VCpuCountRange

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

The minimum and maximum number of vCPUs.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#maxInteger

The maximum number of vCPUs. If this parameter is not specified, there is no maximum limit.

Returns:

  • (Integer)


65689
65690
65691
65692
65693
65694
# File 'lib/aws-sdk-ec2/types.rb', line 65689

class VCpuCountRange < Struct.new(
  :min,
  :max)
  SENSITIVE = []
  include Aws::Structure
end

#minInteger

The minimum number of vCPUs. If the value is ‘0`, there is no minimum limit.

Returns:

  • (Integer)


65689
65690
65691
65692
65693
65694
# File 'lib/aws-sdk-ec2/types.rb', line 65689

class VCpuCountRange < Struct.new(
  :min,
  :max)
  SENSITIVE = []
  include Aws::Structure
end