Automated DynamoDB Data Marshaling

Ifitzsimmons
3 min readJan 25, 2021

Marshal your own data when the higher level APIs will not.

Wikipedia

If you’re familiar with DynamoDB, you know that transforming (or as AWS calls it, “marshaling”) your data into DynamoDB ‘s consumable form can be cumbersome.

Luckily for us developers, AWS offers higher level APIs that will handle data marshaling for us (see DocumentClient for NodeJS and DynamoDB Table for Python). So…

--

--