AWS - Auto Scaling
Given this step scaling policy snippet:
If the metric increases by 12 units, how many instances will be added?
{
"PolicyType": "StepScaling",
"StepAdjustments": [
{"MetricIntervalLowerBound": 0, "ScalingAdjustment": 1},
{"MetricIntervalLowerBound": 10, "ScalingAdjustment": 2}
]
}If the metric increases by 12 units, how many instances will be added?
