问题
I am trying to push the data to Dynamodb from node JS code.
I am getting the issue like
DynamoDB.DocumentClient should support empty string properties
does anyone knows how to disable validation in DynamoDB ?
回答1:
By adding this we will be able to insert empty values to Dynamodb.
var dynamoDocClient = new AWS.DynamoDB.DocumentClient({ region : 'us-west-2', convertEmptyValues : true });
来源:https://stackoverflow.com/questions/48625681/how-to-fix-disable-validation-in-dynamo-db-against-null-empty-string