lastChangedAt in AWS DynamoDB
1 min readApr 18, 2020
It’s weird what this means. I found that AWS Timestamp uses epoch date time format and on Java SDK with getLastChangedAt
explain that it is the timestamp when the transition state was last changed.
So you have to convert your time to epoch time format.
import time
epoch_time = int(time.time())
print(epoch_time)