I have gone through the following doc which tells how to compress data before pushing into DynamoDB.
Is it possible to push data (> 1KB in size) in compressed format and rest of the data in uncompressed format into DynamoDB?
My Scenario: Push JSON string into DynamoDB
- Check if JSON object size is more than 1KB.
- If yes, compress the JSON string and update into DynamoDB
- If no, update the JSON string as it is into DynamoDB