Class: Aws::EC2::Types::MemoryMiBRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::MemoryMiBRequest
- 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
-
#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.
49099 49100 49101 49102 49103 49104 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 49099 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
.
49099 49100 49101 49102 49103 49104 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 49099 class MemoryMiBRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |