The document describes how to build multi-tier architectures using Amazon API Gateway and AWS Lambda as the serverless logic tier. Some key points:
1. API Gateway acts as the front door for the logic tier and integrates AWS Lambda functions, allowing them to be triggered by HTTPS requests.
2. Lambda allows arbitrary code to run in response to events, including API Gateway requests. This enables running business logic behind APIs.
3. The combination of API Gateway and Lambda handles scaling, availability, security, and management of the logic tier infrastructure. Developers can focus on application code.
4. Lambda functions can access data tier resources both within a VPC for private resources, as well as services like S3