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)


66591
66592
66593
66594
66595
66596
# File 'lib/aws-sdk-ec2/types.rb', line 66591

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)


66591
66592
66593
66594
66595
66596
# File 'lib/aws-sdk-ec2/types.rb', line 66591

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