การสร้างระบบ AWS ที่ well-architected มักทำตาม รูปแบบ ที่เป็นที่ยอมรับ ได้แก่ three-tier web architecture, microservices, event-driven, serverless และอื่น ๆ ซึ่งผสานบริการ AWS เพื่อตอบโจทย์ความต้องการที่พบบ่อยอย่างความ scalable การ decouple และความยืดหยุ่น
Three-tier web architecture (คลาสสิก)
The classic scalable web app:
PRESENTATION → CloudFront (CDN) + S3 (static frontend) or ALB → web tier
APPLICATION → EC2/containers (auto-scaled, multi-AZ) behind a load balancer
DATA → RDS (Multi-AZ) / DynamoDB; ElastiCache for caching
→ Each tier scales independently; multi-AZ for HA; the foundational web pattern.
Microservices
Decompose into independent services (each owning its data):
→ containers (ECS/EKS) or Lambda per service; API Gateway / service mesh
→ communicate via APIs and async messaging (SQS/SNS/EventBridge)
→ independent scaling, deployment, and teams
→ Flexibility and scalability at the cost of distributed-system complexity.
