0Pricing
Serverless Backend with AWS Lambda & API Gateway · Lesson

Understanding the Serverless Execution Model

Dive into how serverless functions actually run: invocation models, cold starts, concurrency, and the stateless nature of functions.

Functions as the Unit of Compute

In serverless, the function is the unit of deployment and scaling. The platform provisions compute only when an event arrives, and scales to zero when idle.

Event-Driven Invocation

Functions run in response to events — an HTTP request, a queue message, a file upload, a schedule. The event payload lands in your handler.

All lessons in this course

  1. What is Serverless?
  2. AWS Core Services Overview
  3. First Lambda Function (Python)
  4. Understanding the Serverless Execution Model
← Back to Serverless Backend with AWS Lambda & API Gateway