A parks department will expose HTTPS endpoints so mobile apps can call backend microservices. Which AWS service is commonly used as the managed front door to create, publish, and manage HTTP APIs?
Select an answer to reveal the explanation.
Short Explanation
Think of API Gateway as the receptionist for your HTTP APIs—create, publish, and manage endpoints without bolting a custom reverse-proxy farm together. Apps call the gateway; the gateway forwards to your backends. It is the common AWS front door for that pattern, not a DNS quirk or a private circuit alone.
Full Explanation
Amazon API Gateway is a managed service for creating, publishing, maintaining, and securing APIs at scale, commonly used as the HTTPS front door to backend services such as Lambda functions or HTTP integrations. It fits the municipal pattern of exposing controlled API endpoints to mobile or web clients. Route 53 Resolver, Direct Connect, and specialized VPC features solve DNS resolution or private connectivity problems; they are not substitutes for an API management front door.