When adding an array at DynamoDB with put_item, is there any way to tell it to preserve the order of the values of the array?
Example: I'm adding array("2", "1", "4"), and it's added to the table as 1, 2, 4. I don't want dynamo to mess up with my array :)
Thanks in advance.