Question 340:
An application currently writes a large number of records to a DynamoDB table in one region. There is a requirement for a secondary application to retrieve new records written to the DynamoDB table every 2 hours and process the updates accordingly. What would be an ideal method to ensure that the secondary application gets the relevant changes from the DynamoDB table?
Answer options:
A.Insert a timestamp for each record and then, scan the entire table for the timestamp as per the last 2 hours. B.Create another DynamoDB table with the records modified in the last 2 hours. C.Use DynamoDB Streams to monitor the changes in the DynamoDB table. D.Transfer records to S3 which were modified in the last 2 hours.