* Update title tags and meta desc for Templates * Update title tags and meta desc for Learn * Update title tags, meta desc, and H1s for Case Studies * Update themes/default/content/learn/abstraction-encapsulation/_index.md Co-authored-by: susan evans <susan.ra.evans@gmail.com> * Update themes/default/content/learn/embedding-pulumi/_index.md Co-authored-by: susan evans <susan.ra.evans@gmail.com> * Update themes/default/content/learn/embedding-pulumi/building-api/index.md Co-authored-by: susan evans <susan.ra.evans@gmail.com> * Update themes/default/content/learn/building-with-pulumi/stack-references/index.md Co-authored-by: Sean Holung <sean.holung@gmail.com> * Update themes/default/content/templates/container-service/_index.md Co-authored-by: Sean Holung <sean.holung@gmail.com> * Update themes/default/content/templates/kubernetes/_index.md Co-authored-by: Sean Holung <sean.holung@gmail.com> * Update themes/default/content/templates/serverless-application/_index.md Co-authored-by: Sean Holung <sean.holung@gmail.com> * Update themes/default/content/templates/virtual-machine/_index.md Co-authored-by: Sean Holung <sean.holung@gmail.com> * Update themes/default/content/templates/static-website/_index.md Co-authored-by: Sean Holung <sean.holung@gmail.com> * Update atlassian.md * Update index.md --------- Co-authored-by: susan evans <susan.ra.evans@gmail.com> Co-authored-by: Sean Holung <sean.holung@gmail.com>
17 lines
1.1 KiB
Markdown
17 lines
1.1 KiB
Markdown
---
|
|
title_tag: What is AWS Lambda?
|
|
title: AWS Lambda
|
|
meta_desc: AWS Lambda is a serverless platform that allows for the execution of code or containers without the need to provision infrastructure yourself.
|
|
layout: glossary/single
|
|
---
|
|
|
|
## Description
|
|
|
|
[AWS Lambda](https://aws.amazon.com/lambda/) is a serverless platform, allowing you to execute code without the need to provision the infrastructure yourself. Code is only running when a suitable trigger is invoked, such as a hit to an API gateway, an update in DyanmoDB, or a change in an IOT device's sensors. The code to be run is uploaded as either a .ZIP file or a container image. A variety of runtimes are available for popular languages.
|
|
|
|
Since Lambda resources are billed only when code is actively running, it can be extremely cost-effective, if a little difficult to predict.
|
|
|
|
### Use Cases
|
|
|
|
The speed and event-driven nature of AWS Lambda makes it a great tool for building highly interactive applications. It can also be used to automate some common tasks, such as pre-prossesing data for machine learning purposes, automated backups, or coordination between other external services.
|