AWS Lambda is een serverless compute service — je voert code (functies) uit zonder servers te beheren. AWS zorgt automatisch voor provisioning, schaling en beheer van de infrastructuur; je levert alleen de code, en deze wordt uitgevoerd als reactie op events, en je betaalt alleen voor de gebruikte rekentijd.
Serverless: geen servers om te beheren
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.
