Bird
0
0

Which of the following is the correct JSON snippet to set a health check interval of 15 seconds in an AWS load balancer configuration?

easy📝 Syntax Q3 of 15
AWS - Elastic Load Balancing
Which of the following is the correct JSON snippet to set a health check interval of 15 seconds in an AWS load balancer configuration?
A{ "IntervalSeconds": 15 }
B{ "HealthCheckInterval": 15 }
C{ "HealthCheckIntervalSeconds": 15 }
D{ "HealthCheckTime": 15 }
Step-by-Step Solution
Solution:
  1. Step 1: Recall the correct property name for health check interval

    The correct property is HealthCheckIntervalSeconds in AWS load balancer configuration.
  2. Step 2: Verify the JSON syntax and property

    { "HealthCheckIntervalSeconds": 15 } uses the correct property and valid JSON syntax.
  3. Final Answer:

    { "HealthCheckIntervalSeconds": 15 } -> Option C
  4. Quick Check:

    Correct property name = HealthCheckIntervalSeconds [OK]
Quick Trick: Use HealthCheckIntervalSeconds for interval setting [OK]
Common Mistakes:
  • Using incorrect property names like IntervalSeconds
  • Missing quotes or invalid JSON syntax

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More AWS Quizzes