Reading stream from DynamoDB by Lambda function declared using SAM
An example of how to read stream from DynamoDB by Lambda function declared using template.yaml of your SAM configuration
With this example, your Lambda function will be executed dynamically when there will be new messages in your DynamoDB stream. In case some error happens, this example includes 3 retries. If none of these was successful Lambda will pass your message to specified SQS queue.
More info on the available properties for the Lambda function creation is here. I use CDK documentation, as I have not found related to SAM resources.
PreviousAdding a scheduled timer to start Lambda function resource using SAMNextSchema to create a resource of SQS queue using SAM
Last updated