Class: Aws::ApplicationAutoScaling::Types::NotScaledReason
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationAutoScaling::Types::NotScaledReason
- Defined in:
- gems/aws-sdk-applicationautoscaling/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
1836 1837 1838 1839 1840 1841 1842 1843 |
# File 'gems/aws-sdk-applicationautoscaling/lib/aws-sdk-applicationautoscaling/types.rb', line 1836 class NotScaledReason < Struct.new( :code, :max_capacity, :min_capacity, :current_capacity) SENSITIVE = [] include Aws::Structure end |
#current_capacity ⇒ Integer
The current capacity.
1836 1837 1838 1839 1840 1841 1842 1843 |
# File 'gems/aws-sdk-applicationautoscaling/lib/aws-sdk-applicationautoscaling/types.rb', line 1836 class NotScaledReason < Struct.new( :code, :max_capacity, :min_capacity, :current_capacity) SENSITIVE = [] include Aws::Structure end |
#max_capacity ⇒ Integer
The maximum capacity.
1836 1837 1838 1839 1840 1841 1842 1843 |
# File 'gems/aws-sdk-applicationautoscaling/lib/aws-sdk-applicationautoscaling/types.rb', line 1836 class NotScaledReason < Struct.new( :code, :max_capacity, :min_capacity, :current_capacity) SENSITIVE = [] include Aws::Structure end |
#min_capacity ⇒ Integer
The minimum capacity.
1836 1837 1838 1839 1840 1841 1842 1843 |
# File 'gems/aws-sdk-applicationautoscaling/lib/aws-sdk-applicationautoscaling/types.rb', line 1836 class NotScaledReason < Struct.new( :code, :max_capacity, :min_capacity, :current_capacity) SENSITIVE = [] include Aws::Structure end |