eolas/zk/Lambda_programming_model.md

28 lines
433 B
Markdown
Raw Permalink Normal View History

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