Bird
0
0

Which of the following is the correct JSON snippet to create a Route 53 health check for an HTTP endpoint?

easy📝 Configuration Q3 of 15
AWS - Route 53
Which of the following is the correct JSON snippet to create a Route 53 health check for an HTTP endpoint?
A{"IPAddress": "192.0.2.44", "Port": 22, "Type": "SSH", "ResourcePath": "/health"}
B{"IPAddress": "192.0.2.44", "Port": 80, "Type": "HTTP", "ResourcePath": "/health"}
C{"IPAddress": "192.0.2.44", "Port": 443, "Type": "FTP", "ResourcePath": "/health"}
D{"IPAddress": "192.0.2.44", "Port": 25, "Type": "SMTP", "ResourcePath": "/health"}
Step-by-Step Solution
Solution:
  1. Step 1: Check protocol and port correctness

    HTTP uses port 80 and the type should be "HTTP" for the health check.
  2. Step 2: Validate JSON fields

    {"IPAddress": "192.0.2.44", "Port": 80, "Type": "HTTP", "ResourcePath": "/health"} correctly sets IP, port 80, type HTTP, and resource path "/health".
  3. Final Answer:

    Correct JSON with HTTP on port 80 -> Option B
  4. Quick Check:

    HTTP health check = port 80, type HTTP [OK]
Quick Trick: HTTP health checks use port 80 and type 'HTTP' [OK]
Common Mistakes:
  • Using wrong port for HTTP (e.g., 22, 25)
  • Setting unsupported protocol types like FTP or SMTP
  • Incorrect JSON syntax or missing fields

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More AWS Quizzes