Class: Aws::EC2::Types::MemoryMiB

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. If this parameter is not specified, there is no maximum limit.

Returns:

  • (Integer)


46669
46670
46671
46672
46673
46674
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 46669

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

#minInteger

The minimum amount of memory, in MiB. If this parameter is not specified, there is no minimum limit.

Returns:

  • (Integer)


46669
46670
46671
46672
46673
46674
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 46669

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