According to the docs:
DynamoDB typically deletes expired items within 48 hours of expiration. The exact duration within which an item truly gets deleted after expiration is specific to the nature of the workload and the size of the table
Is there any way we can estimate how long it would take for an expired item to be removed in certain table? I was hoping to implement sort of a scheduler based on a DynamoDB table with TTL and a Lambda function processing DynamoDB Streams, but I would need deletions to take effect not later than one hour after an item is expired. Would this be possible if the table is not large (less than 1.000 items)?