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.
61099 61100 61101 61102 61103 61104 |
# File 'lib/aws-sdk-ec2/types.rb', line 61099 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.
61099 61100 61101 61102 61103 61104 |
# File 'lib/aws-sdk-ec2/types.rb', line 61099 class MemoryMiBRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |