AWS Lambda คือบริการ serverless compute — คุณรันโค้ด (functions) โดยไม่ต้องจัดการเซิร์ฟเวอร์ AWS จะ provision, scale และจัดการโครงสร้างพื้นฐานโดยอัตโนมัติ คุณเพียงแค่ให้โค้ด แล้วมันก็จะรันเพื่อตอบสนองต่อ events โดยจ่ายเฉพาะเวลา compute ที่ใช้
Serverless: ไม่มีเซิร์ฟเวอร์ให้จัดการ
SERVERLESS doesn't mean "no servers" — it means YOU don't manage them:
→ you provide CODE (a function); AWS runs it on demand
→ AWS handles provisioning, SCALING (automatically, to any load), patching, availability
→ pay ONLY for actual execution time (not idle servers) — no cost when not running
→ Focus purely on code, not infrastructure.
