Class: Aws::EC2::Types::MemoryMiBRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::MemoryMiBRequest
- 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
-
#max ⇒ Integer
The maximum amount of memory, in MiB.
-
#min ⇒ Integer
The minimum amount of memory, in MiB.
Instance Attribute Details
#max ⇒ Integer
The maximum amount of memory, in MiB. To specify no maximum limit, omit this parameter.
50119 50120 50121 50122 50123 50124 |
# File 'lib/aws-sdk-ec2/types.rb', line 50119 class MemoryMiBRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |
#min ⇒ Integer
The minimum amount of memory, in MiB. To specify no minimum limit, specify ‘0`.
50119 50120 50121 50122 50123 50124 |
# File 'lib/aws-sdk-ec2/types.rb', line 50119 class MemoryMiBRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |