Class: Aws::EC2::Types::MemoryMiBRequest

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

Overview

The minimum and maximum amount of memory, in MiB.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#maxInteger

The maximum amount of memory, in MiB. To specify no maximum limit, omit this parameter.

Returns:

  • (Integer)


46596
46597
46598
46599
46600
46601
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 46596

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

#minInteger

The minimum amount of memory, in MiB. To specify no minimum limit, specify 0.

Returns:

  • (Integer)


46596
46597
46598
46599
46600
46601
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 46596

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