DynamoDB Auto Generate Timestamp

0

I have a DynamoDBTable "Post" which has a attribute "note". "note" holds a entity Note which is a DynamoDBDocument. I have a field createdAT in "Note". I'm trying to use @DynamoDBAutoGenerateTimestamp for createdAT field. But when i store an entry in "Post" table the createdAt in field in the DynamoDBDocument is not populated. Could you pls help me understand the behaviour and how can i fix that?

已提問 1 年前檢視次數 2968 次
2 個答案
0

DynamoDB supports the use of the @DynamoDBAutoGenerateTimestamp annotation to automatically populate a timestamp attribute when an item is created or updated in a DynamoDB table. However, this annotation only works on top-level attributes of an item, not on nested attributes within a DynamoDBDocument.

To fix this, you can have a few options:

One approach is to extract the "Note" entity out of the "Post" table and create a new table for it. Then you can use the @DynamoDBAutoGenerateTimestamp annotation on the "createdAt" attribute in the "Note" table. Another option is to use a Lambda function that is triggered by the DynamoDB Streams of the "Post" table. The Lambda function can check if the "createdAt" attribute in the "Note" entity is null, and if so, set it to the current timestamp before storing the item in the "Post" table. You can write a code in the application layer that will populate the createdAt field with the current timestamp before storing the item in the "Post" table. By using one of the above options, you should be able to automatically populate the "createdAt" attribute in the "Note" entity when an item is stored in the "Post" table.

profile picture
已回答 1 年前
  • Thank you for the response :) Do we have an aws doc where this is behaviour is mentioned 🤔

0

"@DynamoDBAutoGenerateTimestamp" has a typo, did you actually use "@DynamoDBAutoGeneratedTimestamp"?

專家
已回答 1 年前

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

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

回答問題指南