I'm trying to create a DynamoDB trigger using DynamoDB Streams and AWS Lambda. I researched a lot but I couldn't find any way to read and process a DynamoDB Stream event in Java 8. I'm completely new to both these technologies so don't know how to work with this.
Essentially, what I want to do is create a record in table B whenever a record is created in table A.
Could any of you please point me to a code or post that handles this use case in Java?
Thanks :)