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.
63992 63993 63994 63995 63996 63997 |
# File 'lib/aws-sdk-ec2/types.rb', line 63992 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.
63992 63993 63994 63995 63996 63997 |
# File 'lib/aws-sdk-ec2/types.rb', line 63992 class MemoryMiBRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |