How can you automate notifications whenever a DynamoDB table is written to?
You can use DynamoDB Streams to invoke a Lambda function to react to write events. In order to deliver a notification, you might configure the Lambda function to publish to an SNS topic, where the relevant people has subscribed to.