Bird
0
0

You want to configure a health check that uses HTTPS on port 8443 with a path "/healthcheck" and a timeout of 6 seconds. Which JSON snippet correctly represents this?

hard📝 Application Q8 of 15
AWS - Elastic Load Balancing
You want to configure a health check that uses HTTPS on port 8443 with a path "/healthcheck" and a timeout of 6 seconds. Which JSON snippet correctly represents this?
A{ "Protocol": "HTTPS", "Port": 80, "Path": "/healthcheck", "TimeoutSeconds": 10 }
B{ "Protocol": "HTTP", "Port": 443, "Path": "/healthcheck", "TimeoutSeconds": 6 }
C{ "Protocol": "TCP", "Port": 8443, "Path": "/healthcheck", "TimeoutSeconds": 6 }
D{ "Protocol": "HTTPS", "Port": 8443, "Path": "/healthcheck", "TimeoutSeconds": 6 }
Step-by-Step Solution
Solution:
  1. Step 1: Match protocol, port, path, and timeout

    The requirement is HTTPS, port 8443, path "/healthcheck", timeout 6 seconds.
  2. Step 2: Verify each option

    { "Protocol": "HTTPS", "Port": 8443, "Path": "/healthcheck", "TimeoutSeconds": 6 } matches all requirements exactly.
  3. Final Answer:

    { "Protocol": "HTTPS", "Port": 8443, "Path": "/healthcheck", "TimeoutSeconds": 6 } -> Option D
  4. Quick Check:

    All parameters match requirement in { "Protocol": "HTTPS", "Port": 8443, "Path": "/healthcheck", "TimeoutSeconds": 6 } [OK]
Quick Trick: Match protocol, port, path, and timeout exactly [OK]
Common Mistakes:
  • Using wrong protocol or port
  • Setting incorrect timeout
  • Using TCP protocol which is not valid for HTTP health checks

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More AWS Quizzes