I'm trying to migrate data from MongoDB to DynamoDB. Based on my test, it seems DMS can only convert array into string. For example:
{ data: ['one', 'two', 'three']}
It will be
{ data: { 'S': [\"one\", \"two\", \"three\"] } }
Is it possible to convert it to List
or Set
using object-mapping
? Or, there is already an official solution that I miss?