eolas/neuron/f8981ab1-f587-4bd7-a1a8-aa934a221168/Lambda_triggers.md
2025-02-10 17:14:11 +00:00

28 lines
573 B
Markdown

---
tags: [AWS, aws-lambda]
---
# AWS Lambda triggers
Here are some common trigger patterns
### API Gateway trigger
- an HTTP request is sent to AWS API Gateway
- API Gateway triggers a Lambda function to execute
### DynamoDB table change trigger
- a record in a DynamoDB table is modified
- DynamoDB triggers a lambda function to execute
### S3 trigger
- a new file is created in S3
- S3 triggers a Lambda function to execute
### SQS trigger
- a new message is added to an [SQS](AWS_Messaging_services.md#sqs)
queue
- SQS triggers a Lambda function to execute