dynobase-icon
Dynobase

Error: ExpressionAttributeValues contains invalid value: One or more parameter values were invalid: An AttributeValue may not contain an empty string

Rafal Wilinski

Answered by Rafal Wilinski

Solution

This error means that you’ve used query which some empty value and DynamoDB does not accept that. There are two possible ways of fixing:

  1. Find and fix empty value, replace with something meaningful or remove from query at all
  2. In DocumentClient constructor add convertEmptyValues param set to true:
const DynamoDB = new AWS.DynamoDB.DocumentClient({
    convertEmptyValues: true
});

This will make DynamoDB SDK to automatically convert all empty values to null.

Login to the AWS Console less. Use Dynobase.

Try 7-day free trial. No credit card needed.

Product Features

Download
/
Changelog
/
Pricing
/
Member Portal
/
Privacy
/
EULA
/
Twitter
© 2024 Dynobase
+
Tired of AWS Console?
Try Dynobase to accelerate your DynamoDB workflow. Start your 7-day free trial today.