Complete the code to specify the minimum capacity for auto-scaling.
{
"AutoScalingSettingsUpdate": {
"MinimumUnits": [1]
}
}The MinimumUnits must be a positive integer specifying the minimum capacity units for auto-scaling.
Complete the code to set the target utilization percentage for auto-scaling.
{
"TargetTrackingScalingPolicyConfiguration": {
"TargetValue": [1]
}
}The TargetValue is a percentage (usually between 0 and 100) that defines the desired utilization for auto-scaling.
Fix the error in the code to correctly specify the scale-in cooldown period.
{
"ScaleInCooldown": [1]
}The ScaleInCooldown must be a positive integer representing seconds. It cannot be a string or negative.
Fill both blanks to set the maximum and minimum capacity units for auto-scaling.
{
"AutoScalingSettingsUpdate": {
"MaximumUnits": [1],
"MinimumUnits": [2]
}
}The MaximumUnits should be greater than the MinimumUnits. Here, 100 is max and 5 is min.
Fill all three blanks to configure the target tracking policy with cooldown periods and target value.
{
"TargetTrackingScalingPolicyConfiguration": {
"TargetValue": [1],
"ScaleInCooldown": [2],
"ScaleOutCooldown": [3]
}
}The TargetValue is 75%, ScaleInCooldown is 60 seconds, and ScaleOutCooldown is 120 seconds.