Class: Aws::EC2::Types::VCpuCountRangeRequest

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. To specify no maximum limit, omit this parameter.

Returns:

  • (Integer)


84430
84431
84432
84433
84434
84435
# File 'lib/aws-sdk-ec2/types.rb', line 84430

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

#minInteger

The minimum number of vCPUs. To specify no minimum limit, specify ‘0`.

Returns:

  • (Integer)


84430
84431
84432
84433
84434
84435
# File 'lib/aws-sdk-ec2/types.rb', line 84430

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