eolas/neuron/0c4abb9b-c940-4636-84e0-b880b7c1ac8b/Lambda_triggers.md
2025-01-02 18:02:35 +00:00

573 B

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 queue
  • SQS triggers a Lambda function to execute