Class: Aws::AutoScaling::Types::MemoryMiBRequest

Inherits:
Struct
  • Object
show all
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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#maxInteger

The memory maximum in MiB.

Returns:

  • (Integer)


4823
4824
4825
4826
4827
4828
# File 'lib/aws-sdk-autoscaling/types.rb', line 4823

class MemoryMiBRequest < Struct.new(
  :min,
  :max)
  SENSITIVE = []
  include Aws::Structure
end

#minInteger

The memory minimum in MiB.

Returns:

  • (Integer)


4823
4824
4825
4826
4827
4828
# File 'lib/aws-sdk-autoscaling/types.rb', line 4823

class MemoryMiBRequest < Struct.new(
  :min,
  :max)
  SENSITIVE = []
  include Aws::Structure
end