AWS Lambda è un servizio di compute serverless — esegui il codice (funzioni) senza gestire server. AWS automaticamente effettua il provisioning, scalabilità e gestione dell'infrastruttura; tu fornisci solo il codice, che viene eseguito in risposta a eventi, pagando solo il tempo di calcolo utilizzato.
Serverless: nessun server da gestire
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.
