Module: AWSCDK::Autoscaling::AdjustmentType
- Defined in:
- autoscaling/adjustment_type.rb
Overview
How adjustment numbers are interpreted.
Constant Summary collapse
- CHANGE_IN_CAPACITY =
Deprecated.Note:
Default:
Add the adjustment number to the current capacity.
A positive number increases capacity, a negative number decreases capacity.
Jsii::Enum.new("aws-cdk-lib.aws_autoscaling.AdjustmentType", "CHANGE_IN_CAPACITY")
- PERCENT_CHANGE_IN_CAPACITY =
Deprecated.Note:
Default:
Add this percentage of the current capacity to itself.
The number must be between -100 and 100; a positive number increases capacity and a negative number decreases it.
Jsii::Enum.new("aws-cdk-lib.aws_autoscaling.AdjustmentType", "PERCENT_CHANGE_IN_CAPACITY")
- EXACT_CAPACITY =
Deprecated.Note:
Default:
Make the capacity equal to the exact number given.
Jsii::Enum.new("aws-cdk-lib.aws_autoscaling.AdjustmentType", "EXACT_CAPACITY")