Complete the code to specify the type of scaling policy for automatic scaling.
"PolicyType": "[1]"
The SimpleScaling policy type triggers scaling based on a single adjustment.
Complete the code to set the target value for a target tracking scaling policy.
"TargetTrackingConfiguration": {"TargetValue": [1]
The TargetValue defines the metric value the scaling policy tries to maintain, commonly set to 50% for CPU utilization.
Fix the error in the step scaling adjustment configuration by completing the missing operator.
"StepAdjustments": [{"MetricIntervalLowerBound": 0, "ScalingAdjustment": [1]]
The ScalingAdjustment value of 1 means the capacity will increase by one unit when the metric exceeds the lower bound.
Fill both blanks to define a step scaling policy with a lower bound and scaling adjustment.
"StepAdjustments": [{"MetricIntervalLowerBound": [1], "ScalingAdjustment": [2]]
The lower bound is set to 10, and the scaling adjustment is 1 to increase capacity when the metric exceeds 10.
Fill all three blanks to configure a target tracking scaling policy with customized parameters.
"TargetTrackingConfiguration": {"PredefinedMetricSpecification": {"PredefinedMetricType": "[1]"}, "TargetValue": [2], "DisableScaleIn": [3]
This configuration tracks average CPU utilization with a target of 50%, and allows scaling in by setting DisableScaleIn to false.