Arquitetura serverless constrói aplicações a partir de serviços gerenciados e orientados por eventos (Lambda, API Gateway, DynamoDB, S3, SQS, etc.) sem gerenciar servidores — a AWS cuida do dimensionamento e da infraestrutura. Compreender como projetar sistemas serverless e seus trade-offs é valioso para arquitetura em nuvem moderna.
Arquitetura serverless típica
A serverless web app/API often combines:
API GATEWAY → receives HTTP requests, routes to Lambda (the API entry point)
LAMBDA → functions handle the business logic (run on demand, auto-scale)
DYNAMODB → serverless NoSQL database (scales automatically)
S3 → static assets / file storage (host the frontend, store uploads)
COGNITO → managed authentication
SQS/SNS/EventBridge → async messaging and event-driven flows
CLOUDFRONT → CDN for the frontend
→ No servers to manage; everything scales automatically; pay per use.
