1/15
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
Where will you develop and test your Lambda code?
In the AWS Lambda Console using the built in code editor and Test button.
What is serverless computing?
Running code without managing servers. AWS automatically handles execution.
When does code run in a Lambda function?
Code in an AWS Lambda function runs in response to an event
What does Async do
makes a function run asynchronously so it can WAIT for things like database queries or API calls without freezing.