Can lambda know the specific attribute which changed in the dynamo db table update, when a lambda is triggered by dynamo db table update item??

0

My client has an architecture to trigger a lambda whenever the dynamo db table is updated. However, my client needs to perform a check on the specific attribute which changed. The lambda payload gives the new and old image. However the lambda should compare and check what changed between the old and new image in order to proceed to the next step. In this case, is there any way the lambda can know which specific attribute changed when an item is updated in a dynamo db ?

AWS
已提問 2 年前檢視次數 1109 次
1 個回答
3

Yes, if you configure your DynamoDB Stream to emit NEW_AND_OLD_IMAGES then the Lambda can see the before and after of the update. You will then have to decide in your application logic which values where changed by comparing the OLD_IMAGE to the NEW_IMAGE

profile pictureAWS
專家
已回答 2 年前
profile pictureAWS
專家
已審閱 2 年前
  • To maybe add to that: the way we do this comparison is by using jsonpatch which is a standardized way of representing the diff between two JSON objects. It is also available in a lot of languages.

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南