Complete the code to specify the scheduled action name.
ScheduledActionName: "[1]"
The scheduled action name uniquely identifies the scaling schedule.
Complete the code to set the desired capacity for the scheduled scaling.
DesiredCapacity: [1]DesiredCapacity must be a number indicating the number of instances to run.
Fix the error in the cron expression for the scheduled scaling.
Schedule: "cron([1])"
The correct AWS cron expression for 8 AM daily is '0 8 * * ? *'.
Fill both blanks to define the Auto Scaling group and the start time for the scheduled action.
AutoScalingGroupName: "[1]", StartTime: "[2]"
The AutoScalingGroupName must match the group you want to scale. StartTime must be in ISO 8601 format with 'Z' for UTC.
Fill all three blanks to create a scheduled scaling action with name, desired capacity, and recurrence.
ScheduledActionName: "[1]", DesiredCapacity: [2], Schedule: "cron([3])"
Use a descriptive name for the scheduled action, a numeric desired capacity, and a valid AWS cron expression for 8 PM daily.