What solution would you create if you need to export daily a table in dynamodb but not the whole content, just the entries from the day? Data pipeline would not work because it is exporting the whole table and I don't need that.
1 Answers
2
votes
Create a CloudWatch Event to trigger a Lambda function and then run a query against your DynamoDB table to fetch data from the current day only.