Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get last updated time for DynamoDB table

Is there any way to get the timestamp for the most recent update on a DynamoDB table?

like image 398
Ajax Avatar asked May 02 '14 13:05

Ajax


1 Answers

No. This is not part of the DynamoDB api. Fortunately this is easy to implement yourself. Add a column to each item for each UpdateItem or PutItem request with the current time. This will insert the time according to your application servers instead of DynamoDB itself, but these ideally will be the same

like image 195
prestomation Avatar answered Sep 19 '22 16:09

prestomation