Module: AWSCDK::ApplicationAutoScaling::AdjustmentType

Defined in:
application_auto_scaling/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_applicationautoscaling.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_applicationautoscaling.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_applicationautoscaling.AdjustmentType", "EXACT_CAPACITY")