edasque / DynamoDBtoCSV

Dump DynamoDB data into a CSV file
Apache License 2.0
471 stars 152 forks source link

Support for Java Lists #14

Closed ricardclau closed 9 years ago

ricardclau commented 9 years ago

Same as HashMaps, when you use Lists with the AWS Java SDK they are stored with a "L".

Again, JSON.stringify as they are stored internally with something similar to this:

"dynamoDBField": { "L": [ { "S": "5f4a9c3d-adb6-4f51-a0ec-8ea7f5f67306" }, { "S": "5f4a9c3d-adb6-4f51-a0ec-8ea7f5f67306" }, { "S": "cc0f77e9-3830-4b34-b344-c8400d5c42d8" }, { "S": "392c9733-de3f-4ea2-8ae4-e4f3dbce74f8" }, { "S": "cc0f77e9-3830-4b34-b344-c8400d5c42d8" }, { "S": "2f84bc97-2002-40bd-a509-e064fee3f44f" } ] }