AWS::ApplicationAutoScaling::ScalingPolicy StepScalingPolicyConfiguration
StepScalingPolicyConfiguration
is a property of the AWS::ApplicationAutoScaling::ScalingPolicy resource that specifies a step scaling
policy configuration for Application Auto Scaling.
For more information, see Step scaling policies in the Application Auto Scaling User Guide.
Syntax
To declare this entity in your AWS CloudFormation template, use the following syntax:
JSON
{ "AdjustmentType" :
String
, "Cooldown" :Integer
, "MetricAggregationType" :String
, "MinAdjustmentMagnitude" :Integer
, "StepAdjustments" :[ StepAdjustment, ... ]
}
YAML
AdjustmentType:
String
Cooldown:Integer
MetricAggregationType:String
MinAdjustmentMagnitude:Integer
StepAdjustments:- StepAdjustment
Properties
AdjustmentType
-
Specifies whether the
ScalingAdjustment
value in theStepAdjustment
property is an absolute number or a percentage of the current capacity.Required: No
Type: String
Allowed values:
ChangeInCapacity | PercentChangeInCapacity | ExactCapacity
Update requires: No interruption
Cooldown
-
The amount of time, in seconds, to wait for a previous scaling activity to take effect. If not specified, the default value is 300. For more information, see Cooldown period in the Application Auto Scaling User Guide.
Required: No
Type: Integer
Update requires: No interruption
MetricAggregationType
-
The aggregation type for the CloudWatch metrics. Valid values are
Minimum
,Maximum
, andAverage
. If the aggregation type is null, the value is treated asAverage
.Required: No
Type: String
Allowed values:
Average | Minimum | Maximum
Update requires: No interruption
MinAdjustmentMagnitude
-
The minimum value to scale by when the adjustment type is
PercentChangeInCapacity
. For example, suppose that you create a step scaling policy to scale out an Amazon ECS service by 25 percent and you specify aMinAdjustmentMagnitude
of 2. If the service has 4 tasks and the scaling policy is performed, 25 percent of 4 is 1. However, because you specified aMinAdjustmentMagnitude
of 2, Application Auto Scaling scales out the service by 2 tasks.Required: No
Type: Integer
Update requires: No interruption
StepAdjustments
-
A set of adjustments that enable you to scale based on the size of the alarm breach.
At least one step adjustment is required if you are adding a new step scaling policy configuration.
Required: No
Type: Array of StepAdjustment
Update requires: No interruption
See also
-
Getting started in the Application Auto Scaling User Guide