Below is my customer table in DynamoDb
name: string
I have linked a trigger that would call Lambda function that in turn calls my app Endpoint which would do data transformation & save in SQL DB
Whenever I am adding any record or updating record in the above table, I can see that Lambda function is getting called. but not sure how can I capture the table data.
I need to capture the name value of the customer dynamoDb table via Lambda function which I can pass to my Endpoint.
Newbie to this. So please excuse if it's too simple. But couldn't find the info that could drive this for me.
Thanks!