0
0
AWScloud~10 mins

Scheduled scaling in AWS - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to specify the scheduled action name.

AWS
ScheduledActionName: "[1]"
Drag options to blanks, or click blank then click option'
ADesiredCapacity
BInstanceType
CAutoScalingGroupName
DScaleUpMorning
Attempts:
3 left
💡 Hint
Common Mistakes
Using resource property names instead of a descriptive name.
Leaving the name blank.
2fill in blank
medium

Complete the code to set the desired capacity for the scheduled scaling.

AWS
DesiredCapacity: [1]
Drag options to blanks, or click blank then click option'
A"High"
BInstanceCount
C5
D"Auto"
Attempts:
3 left
💡 Hint
Common Mistakes
Using strings instead of numbers.
Using undefined variables.
3fill in blank
hard

Fix the error in the cron expression for the scheduled scaling.

AWS
Schedule: "cron([1])"
Drag options to blanks, or click blank then click option'
A0 8 * * ? *
B8 0 * * ? *
C0 8 * * *
D0 8 ? * *
Attempts:
3 left
💡 Hint
Common Mistakes
Using five-field cron expressions instead of six.
Misplacing the '?' character.
4fill in blank
hard

Fill both blanks to define the Auto Scaling group and the start time for the scheduled action.

AWS
AutoScalingGroupName: "[1]",
StartTime: "[2]"
Drag options to blanks, or click blank then click option'
AMyAutoScalingGroup
B2024-07-01T08:00:00Z
C2024-07-01 08:00:00
DScalingGroup1
Attempts:
3 left
💡 Hint
Common Mistakes
Using incorrect date formats.
Using wrong Auto Scaling group names.
5fill in blank
hard

Fill all three blanks to create a scheduled scaling action with name, desired capacity, and recurrence.

AWS
ScheduledActionName: "[1]",
DesiredCapacity: [2],
Schedule: "cron([3])"
Drag options to blanks, or click blank then click option'
AEveningScaleDown
B2
C0 20 * * ? *
DMorningScaleUp
Attempts:
3 left
💡 Hint
Common Mistakes
Using invalid cron expressions.
Using string values for DesiredCapacity.