
The serverless that set the standard: code that runs on events, scales from zero to thousands of executions and is billed by the millisecond.
Lambda runs functions in response to events — a file on S3, a message in a queue, an API call — with no server to manage: automatic scaling, high availability included and billing per millisecond of execution.

Complex flows orchestrated visually: retries, parallelism and states without glue code.
The company event bus: systems talking through events, decoupled.
Functions reaching private databases and systems: serverless for the enterprise too.
Cold starts tamed: constant latencies even for Java and sudden peaks.
Lambda runs functions up to 15 minutes with 128MB-10GB of memory (CPU scales with memory): cold starts are mitigated with provisioned concurrency or SnapStart; concurrency is per account/region with reserved concurrency to protect critical functions. Event source mapping consumes SQS/Kinesis/DynamoDB Streams with batching and DLQs; function URLs and API Gateway expose HTTP; layers share dependencies.
The file arrives, gets validated and lands in the ERP: lightweight ETL without dedicated servers.
Endpoints costing cents per month: perfect for sporadic-call B2B.
Reactions to infrastructure events: the missing tag fixed, the alarm enriched.