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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


46707
46708
46709
46710
46711
46712
# File 'lib/aws-sdk-ec2/types.rb', line 46707

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)


46707
46708
46709
46710
46711
46712
# File 'lib/aws-sdk-ec2/types.rb', line 46707

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