A city standardizes how partners and internal services talk to the permit platform: partners need a synchronous HTTP contract, while internal services should react asynchronously. Which design matches?
Select an answer to reveal the explanation.
Short Explanation
Partners like a clean front door—REST through API Gateway. Inside city hall, pass notes with events and queues so teams aren’t glued together.
Full Explanation
Amazon API Gateway provides a managed REST surface for external partners with throttling, auth, and versioning. Internally, SNS, EventBridge, or SQS supports asynchronous, loosely coupled service communication. Exposing raw queues to partners, SSH tunnels, or RDP into a monolith breaks the dual sync/async pattern.