AWS Lambda एक serverless compute service है — आप servers का प्रबंधन किए बिना code (functions) चलाते हैं। AWS स्वचालित रूप से infrastructure को provision, scale, और manage करता है; आप बस code प्रदान करते हैं, और यह events के जवाब में चलता है, केवल उपयोग किए गए compute time का भुगतान करते हुए।
Serverless: प्रबंधित करने के लिए कोई servers नहीं
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.
