Serverless architecture என்பது managed, event-driven services (Lambda, API Gateway, DynamoDB, S3, SQS, முதலியன) இலிருந்து servers ஐ manage செய்யாமல் applications ஐ build செய்கிறது — AWS scaling மற்றும் infrastructure ஐ handle செய்கிறது. Serverless systems ஐ design செய்வது மற்றும் அவற்றின் trade-offs ஐ புரிந்துகொள்வது modern cloud architecture க்கு மதிப்பளிக்கப்படுகிறது.
ஒரு சாதாரண serverless architecture
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.
