Class: Aws::AutoScaling::Types::AcceleratorTotalMemoryMiBRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AutoScaling::Types::AcceleratorTotalMemoryMiBRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-autoscaling/types.rb
Overview
Specifies the minimum and maximum for the ‘AcceleratorTotalMemoryMiB` 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.
55 56 57 58 59 60 |
# File 'lib/aws-sdk-autoscaling/types.rb', line 55 class AcceleratorTotalMemoryMiBRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |
#min ⇒ Integer
The memory minimum in MiB.
55 56 57 58 59 60 |
# File 'lib/aws-sdk-autoscaling/types.rb', line 55 class AcceleratorTotalMemoryMiBRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |