Class: Aws::AutoScaling::Types::MemoryMiBRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AutoScaling::Types::MemoryMiBRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-autoscaling/types.rb
Overview
Specifies the minimum and maximum for the ‘MemoryMiB` object when you specify [InstanceRequirements] for an Auto Scaling group.
[1]: docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max ⇒ Integer
The memory maximum in MiB.
-
#min ⇒ Integer
The memory minimum in MiB.
Instance Attribute Details
#max ⇒ Integer
The memory maximum in MiB.
5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-autoscaling/types.rb', line 5142 class MemoryMiBRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |
#min ⇒ Integer
The memory minimum in MiB.
5142 5143 5144 5145 5146 5147 |
# File 'lib/aws-sdk-autoscaling/types.rb', line 5142 class MemoryMiBRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |