Is it possible to export data from DynamoDB table in some format with PHP?
the concrete use case is that i need to export all data of my tables to a CSV file or to S3 bucket.
Thanks
Easiest thing for you to do is export using the built in tools:
It will push the data to S3 for you, which you can then use however you want. Do it one-time or on a recurring basis.
I change the way to think the things, I decide to export data in a XML file. An easy way. If someone needs the way to export and import data from dynamodb with PHP, let me know and I'll post the code to do it.
Thanks