Class: Aws::ApplicationAutoScaling::Types::NotScaledReason
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationAutoScaling::Types::NotScaledReason
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-applicationautoscaling/types.rb
Overview
Describes the reason for an activity that isn’t scaled (*not scaled activity*), in machine-readable format. For help interpreting the not scaled reason details, see [Scaling activities for Application Auto Scaling] in the *Application Auto Scaling User Guide*.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code ⇒ String
A code that represents the reason for not scaling.
-
#current_capacity ⇒ Integer
The current capacity.
-
#max_capacity ⇒ Integer
The maximum capacity.
-
#min_capacity ⇒ Integer
The minimum capacity.
Instance Attribute Details
#code ⇒ String
A code that represents the reason for not scaling.
Valid values:
-
AutoScalingAnticipatedFlapping
-
TargetServicePutResourceAsUnscalable
-
AlreadyAtMaxCapacity
-
AlreadyAtMinCapacity
-
AlreadyAtDesiredCapacity
1722 1723 1724 1725 1726 1727 1728 1729 |
# File 'lib/aws-sdk-applicationautoscaling/types.rb', line 1722 class NotScaledReason < Struct.new( :code, :max_capacity, :min_capacity, :current_capacity) SENSITIVE = [] include Aws::Structure end |
#current_capacity ⇒ Integer
The current capacity.
1722 1723 1724 1725 1726 1727 1728 1729 |
# File 'lib/aws-sdk-applicationautoscaling/types.rb', line 1722 class NotScaledReason < Struct.new( :code, :max_capacity, :min_capacity, :current_capacity) SENSITIVE = [] include Aws::Structure end |
#max_capacity ⇒ Integer
The maximum capacity.
1722 1723 1724 1725 1726 1727 1728 1729 |
# File 'lib/aws-sdk-applicationautoscaling/types.rb', line 1722 class NotScaledReason < Struct.new( :code, :max_capacity, :min_capacity, :current_capacity) SENSITIVE = [] include Aws::Structure end |
#min_capacity ⇒ Integer
The minimum capacity.
1722 1723 1724 1725 1726 1727 1728 1729 |
# File 'lib/aws-sdk-applicationautoscaling/types.rb', line 1722 class NotScaledReason < Struct.new( :code, :max_capacity, :min_capacity, :current_capacity) SENSITIVE = [] include Aws::Structure end |