0 votes
in AWS by

You are requested to expose your serverless application implemented with AWS Lambda to HTTP clients.

( using HTTP Proxy ) Which of the following AWS services can you use to accomplish the task? (Select TWO)

1 Answer

0 votes
by

Answer: A and C.

Option A is CORRECT because AWS documentation mentions that "Application Load Balancers now support invoking Lambda functions to serve HTTP(S) requests." This enables users to access serverless applications from any HTTP client, including web browsers.

Option B is INCORRECT because Route53 is a Domain Name System and not an HTTP proxy.

Option C is CORRECT because API Gateway + Lambda is a common pattern for exposing serverless functions via HTTP/HTTPS.

AWS documentation mentions that "Creating, deploying, and managing a REST application programming interface (API) to expose backend HTTP endpoints, AWS Lambda functions, or other AWS services."

Option D is INCORRECT because AWS Lightsail has a completely different goal.

...