Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
AWS Serverless Lambda Functions 2 hr. Hands On Crash Course
Highest Rated
Rating: 4.6 out of 5(1,932 ratings)
7,685 students

AWS Serverless Lambda Functions 2 hr. Hands On Crash Course

Master AWS Lambda, create serverless functions and microservices, and see real life demos! Beginners welcome!
Created byRick Crisci
Last updated 5/2026
English

What you'll learn

  • Understand basic Lambda concepts and create your first function.
  • Learn key concepts for microservices, containers, and serverless functions.
  • Downloadable PDF study guides make it easy to review key lessons
  • Configure scheduled Lambda functions and monitor Lambda logs.
  • Understand and configure scaling with Lambda using unreserved, provisioned, and reserved concurrency.
  • Frequent quizzes help to reinforce your knowledge as you go

Course content

1 section20 lectures2h 30m total length
  • Introduction1:04
  • Introduction to Microservices8:21

    In this lesson, the concept of microservices is introduced and compared to traditional monolithic application architecture. Microservices involve breaking down an application into smaller, specialized components, each with its own defined function and the ability to communicate through well-defined APIs. The benefits of microservices include increased resilience, flexibility in resource allocation, and ease of scaling, allowing developers to replace parts of the application independently, resulting in faster development and scalability. The lesson also highlights the advantages of implementing microservices in a cloud computing environment, with examples from AWS, Google Cloud, and other cloud providers.

  • Microservices Quiz
  • Introduction to Containers10:27

    In this lesson, the concept of containers and their advantages over virtual machines is explained. Containers are lightweight, self-contained environments that package an application along with its dependencies, libraries, and configuration files. They allow applications to run reliably across different computing environments without being affected by variations in operating systems or infrastructure, making them an ideal choice for microservices and software deployment. The lesson also covers the components of containers, including source code, dependencies, the container engine, and the container image, which can be stored in a registry for easy deployment.

  • Containers Quiz
  • What is Serverless?7:22

    In this lesson, the basics of creating serverless applications, primarily focusing on AWS Lambda, are introduced. Serverless computing, exemplified by Lambda, is a paradigm where developers can run code without the need to provision or manage servers. Unlike traditional virtual machines like EC2, Lambda functions are short-lived, cost-effective, and run only when invoked, making them a more efficient and scalable choice for many application scenarios. The lesson emphasizes the elimination of server management in serverless computing, allowing developers to focus on writing code rather than managing infrastructure.

  • Quiz: What is Serverless?
  • Invoking Lambda Functions5:34

    In this lesson, you'll learn how AWS Lambda functions are invoked and understand the event-driven nature of Lambda. AWS Lambda functions are executed in response to specific events, and you only pay for the compute time consumed during execution. Various AWS services, such as API Gateway, Kinesis, DynamoDB, S3, SNS, and SQS, can trigger Lambda functions based on specific events or changes, making Lambda a versatile and event-driven serverless compute service.

  • Quiz: Invoking Lambda Functions
  • Follow-along Lab: The Lambda Console4:25
  • Follow-along Lab: Lambda Basics12:25
  • Lambda Scaling with Unreserved Concurrency7:02

    In this lesson, you will learn about the scalability and performance of AWS Lambda functions using a simple analogy of a funnel. The lesson discusses how Lambda scales with concurrent invocations and how increasing memory allocation can improve function execution performance. It also introduces the concept of concurrency and explains unreserved concurrency, which is the default behavior in AWS Lambda, where no specific guarantees are made about the number of concurrent invocations.

  • Quiz: Lambda Scaling
  • Lambda Reserved Concurrency8:30

    This lesson introduces the concept of reserved concurrency and provisioned concurrency for AWS Lambda functions. Reserved concurrency allows you to allocate a specific number of concurrent invocations to a particular Lambda function, ensuring it won't be throttled, but potentially at the expense of other functions. Provisioned concurrency, on the other hand, aims to improve the performance of Lambda functions by reducing cold start times, and it will be discussed in more detail in the following lesson.

  • Quiz: Lambda Reserved Concurrency
  • Lambda Provisioned Concurrency9:14

    In this lesson, you'll delve into the concept of Lambda provisioned concurrency, a method to reduce latency and enhance the performance of Lambda functions. You'll learn how provisioned concurrency differs from reserved concurrency, how it pre-initializes execution environments to eliminate cold starts, and the associated costs. Additionally, the lesson explores strategies to optimize costs through auto-scaling and scheduling of provisioned concurrency units, providing a comprehensive overview of this vital Lambda feature.

  • Quiz: Lambda Provisioned Concurrency
  • Demo: Monitoring Lambda Logs7:40

    In this demo, you'll learn how to effectively monitor and analyze Lambda activity through logs. The demonstration covers accessing Lambda function metrics, checking invocation counts, and understanding error rates, while also delving into CloudWatch Logs and how to set up log retention settings. Furthermore, the tutorial introduces the use of CloudWatch Logs Insights to streamline log analysis, demonstrating built-in queries that assist in identifying issues and optimizing Lambda function performance.

  • Follow-along Lab: Lambda Logging11:28
  • Traditional vs. Serverless Architecture6:25

    In this lesson, you'll explore the differences between traditional and serverless architectures in AWS. The traditional architecture involves managing EC2 instances, server maintenance, and database configuration, which can be complex and costly. On the other hand, the serverless architecture in AWS eliminates the need for managing servers, allowing you to focus on writing code and efficiently handling tasks, making it a more cost-effective and scalable solution.

  • Quiz: Traditional vs. Serverless Architecture
  • Synchronous vs. Asynchronous Invocation8:13

    This lesson explains the difference between synchronous and asynchronous Lambda invocation using a restaurant analogy, where synchronous is like a waiter waiting for a meal to be prepared (resulting in downtime), and asynchronous is like waiters leaving orders for cooks and moving on (more efficient). The lesson further delves into AWS Lambda, illustrating how a main lambda function invoking other functions synchronously can lead to inefficiencies and higher costs due to the main function waiting for others to complete. Conversely, asynchronous invocation, using a queue for events, allows the main function to finish quickly, only incurring costs for the time taken by each function, which is more efficient but requires careful error handling by developers.

  • Quiz - Synchronous vs. Asynchronous Invocation
  • Lambda, IAM, and VPCs7:21

    Lambda functions in AWS can be deployed within a Virtual Private Cloud (VPC) to access resources like EC2 and RDS with private IP addresses. Using Elastic Network Interfaces (ENIs) and potentially a NAT Gateway, Lambda can communicate within the VPC and access the internet. VPC endpoints enable Lambda to securely access AWS services like S3 over AWS's backbone network, avoiding public internet. For Lambda to interact with other AWS services, it must have an IAM role with the necessary permissions.

  • Quiz - Lambda, IAM, and VPCs
  • Demo: Scheduled Lambda Function with IAM and CloudWatch Integration13:25

    This demo guides on creating a Lambda function to snapshot EC2 instances, starting with setting up the necessary IAM permissions. It covers creating the function, providing code, deploying it, and scheduling regular execution using EventBridge, demonstrating Lambda's integration with AWS services like EC2 and IAM for resource management and automated tasks.

  • Versions5:53

    This lesson introduces the concept of Lambda function versions, which allow developers to manage, test, and safely roll back changes to their code and configuration. By using versions and strategies like blue-green deployments, you can direct traffic to specific versions for testing while keeping production stable, enabling safer updates and simplified change management.

  • Aliases5:54

    In this lesson, we explore Lambda aliases, which act as named pointers to specific function versions, enabling safe and flexible traffic routing during updates. You'll learn how aliases can support blue-green deployments and traffic weighting, allowing gradual rollouts of new Lambda versions while maintaining stability in production environments.

  • Demo: Versions and Aliases8:38

    In this demonstration, you'll learn how to create and manage Lambda versions and aliases in the AWS Console to control code deployments and ensure application stability. The demo shows how to publish new versions, create aliases like prod, and update or route traffic using version pointers and weighted traffic distribution for flexible rollout strategies.

  • Bonus Video0:42

Requirements

  • No experience required. Beginners welcome!

Description

"This is a very good introduction course. It contains the basics of creating and managing Lambda functions, along with key information about integrating with other AWS services and/or VPC's. Additionally, it touches upon pricing and high level performance considerations. It was well worth my time." -Susan

"Very good live demonstrations, it is very helpful." -John

Are you brand new to AWS Lambda? If you need to get a strong understanding of AWS Lambda quickly and clearly, this is the course for you.

Frequent quizzes and downloadable PDF study guides are recent additions to this course that will help you learn even faster!

Most lectures in this course are 5 - 10 minutes long. This course gives you an understanding of how Lambda works, how it is billed, and how to create your own AWS Lambda Functions!

Follow along with real-life demos in your own AWS account!

You can begin this course now, and in two short hours you will have a strong understanding of Lambda. So don't wait - give this course a try now and learn how to manage Lambda!

Lessons include:

  • Introduction to Microservices and Containers

  • Introduction to Serverless Functions

  • Invoking Lambda

  • Introduction to the Lambda console

  • Scaling and performance of Lambda Functions

  • Lambda Logging Demo

  • Traditional vs. Serverless architecture

  • Lambda, IAM, and VPCs

  • Synchronous vs. Asynchronous Lambda Functions

  • Create a Basic Lambda Function

  • Create a Scheduled Lambda Function Integrated with IAM, CloudWatch logs, Eventbridge

Who this course is for:

  • Lambda beginners
  • Anyone that needs to understand functions, microservices, and containers
  • Anyone working on an AWS Certification, since most of them now cover Lambda