Nick Fisher's tech blog

Aws-Lambda

Setting up a Python Lambda to Trigger on DynamoDB Streams via the AWS CLI

DynamoDB streams record information about what has changed in a DynamoDB table, and AWS lambdas are ways to run code without managing servers yourself. DynamoDB streams also have an integration with AWS Lambdas so that any change to a DynamoDB table can be processed by an AWS Lambda–still without worrying about keeping your servers up or maintaining them. That is the subject of this post.