Ad space (banner)
AD

Got the fundamentals? A structured AWS course is a fast way to level up.

Find AWS courses on Udemy

Affiliate link. Costs you nothing extra.

☁️AWS Lessons
Lesson 34 / 41

What Is Lambda?

Lambda runs your code without any server for you to manage. You upload a function, and AWS runs it whenever something triggers it.

You are charged only for the time your code actually runs, measured in milliseconds. Idle costs nothing at all.

Running aws lambda list-functions shows the functions defined in your account.

A common stumble is expecting Lambda to suit everything. Functions have a maximum run time (15 minutes) and a cold-start delay, so long or latency-critical work may belong elsewhere.

In real work, Lambda handles event-driven jobs: resizing an image the moment it lands in S3, backing an API, running scheduled maintenance.

AWS
Try it (type this into the pseudo terminal)
aws lambda list-functions

🧑‍💻 You can type this command into the AWS pseudo terminal to try it yourself (this page itself has no interactive terminal).

Ad space (banner)
Ad space (in-article)