AWS Lambda is a serverless compute service — you run code (functions) without managing servers. AWS automatically provisions, scales, and manages the infrastructure; you just provide the code, and it runs in response to events, paying only for the compute time used.
Serverless: no servers to manage
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.
