A parks department needs a public HTTPS endpoint that maps HTTP routes to Lambda handlers and can add JWT authorizers later. Which integration should the developer choose?
Select an answer to reveal the explanation.
Short Explanation
Citizens need a proper HTTPS front door, not a DIY Lambda ARN in DNS. API Gateway maps routes to handlers, gives you stages, and is where JWT authorizers plug in later. Function URLs or SSH-to-EC2 are the wrong shape for that roadmap.
Full Explanation
Amazon API Gateway provides managed HTTPS endpoints, route-to-Lambda integrations, stage management, and authorizer hooks including JWT-based authorization. That matches a public API that will grow authentication later. Private-only function URLs without an API layer, SSH-based packaging, and publishing ARNs for direct SDK invoke do not deliver the same HTTP routing and authorizer model.