Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions lib/dynamodb/document_client.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ AWS.DynamoDB.DocumentClient = AWS.util.inherit({
* @option options service [AWS.DynamoDB] An optional pre-configured instance
* of the AWS.DynamoDB service object to use for requests. The object may
* bound parameters used by the document client.
* @option options convertEmptyValues [Boolean] set to true if you would like
* the document client to convert empty values (0-length strings, binary
* buffers, and sets) to be converted to NULL types when persisting to
* DynamoDB.
* @see AWS.DynamoDB.constructor
*
*/
Expand Down Expand Up @@ -430,10 +434,6 @@ AWS.DynamoDB.DocumentClient = AWS.util.inherit({
* @param options [map]
* * **validate** [Boolean] set to true if you want to validate the type
* of each element in the set. Defaults to `false`.
* * **convertEmptyValues** [Boolean] set to true if you would like the
* document client to convert empty values (0-length strings, binary
* buffers, and sets) to be converted to NULL types when persisting to
* DynamoDB.
* @example Creating a number set
* var docClient = new AWS.DynamoDB.DocumentClient();
*
Expand Down