Bird
0
0

Which of the following is the correct JSON snippet to set a cooldown period of 120 seconds in an AWS Auto Scaling policy?

easy📝 Configuration Q3 of 15
AWS - Auto Scaling
Which of the following is the correct JSON snippet to set a cooldown period of 120 seconds in an AWS Auto Scaling policy?
A{ \"CooldownSeconds\": 120 }
B{ \"CooldownPeriod\": 120 }
C{ \"CooldownTime\": 120 }
D{ \"Cooldown\": 120 }
Step-by-Step Solution
Solution:
  1. Step 1: Recall correct property name

    The correct property to set cooldown in AWS Auto Scaling policy JSON is 'Cooldown'.
  2. Step 2: Match correct JSON syntax

    The value is an integer representing seconds, so { "Cooldown": 120 } is correct.
  3. Final Answer:

    { "Cooldown": 120 } -> Option D
  4. Quick Check:

    Cooldown property name = Cooldown [OK]
Quick Trick: Use 'Cooldown' key exactly for cooldown period [OK]
Common Mistakes:
MISTAKES
  • Using incorrect property names like CooldownPeriod
  • Adding extra words like Seconds or Time
  • Wrong JSON syntax or quotes

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More AWS Quizzes