2023-04-08 18:55:52 +01:00
|
|
|
---
|
|
|
|
categories:
|
|
|
|
- DevOps
|
|
|
|
tags: [AWS, aws-lambda, backend]
|
|
|
|
---
|
|
|
|
|
|
|
|
# AWS Lambda programming model
|
|
|
|
|
|
|
|
The overall architecure consists in the following three processes:
|
|
|
|
|
|
|
|
1. Triggers
|
|
|
|
2. Handler function
|
|
|
|
3. Code
|
|
|
|
|
|
|
|
## Triggers
|
|
|
|
|
|
|
|
See [AWS Lambda triggers](/DevOps/AWS/AWS_Lambda/Lambda_triggers.md)
|
|
|
|
|
|
|
|
## Handler function
|
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
See
|
|
|
|
[AWS Lambda handler function](/DevOps/AWS/AWS_Lambda/Lambda_handler_function.md)
|
2023-04-08 18:55:52 +01:00
|
|
|
|
|
|
|
## Code
|
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
This is just the stuff that runs in the body of the handler or that is called
|
|
|
|
from the handler body.
|