@aws-sdk/util-dynamodb 3.699.0 → 3.704.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/marshall.d.ts +5 -1
- package/package.json +1 -1
package/dist-types/marshall.d.ts
CHANGED
|
@@ -10,7 +10,11 @@ export interface marshallOptions {
|
|
|
10
10
|
*/
|
|
11
11
|
convertEmptyValues?: boolean;
|
|
12
12
|
/**
|
|
13
|
-
* Whether to remove undefined values
|
|
13
|
+
* Whether to remove undefined values from JS arrays/Sets/objects
|
|
14
|
+
* when marshalling to DynamoDB lists/sets/maps respectively.
|
|
15
|
+
*
|
|
16
|
+
* A DynamoDB item is not itself considered a map. Only
|
|
17
|
+
* attributes of an item are examined.
|
|
14
18
|
*/
|
|
15
19
|
removeUndefinedValues?: boolean;
|
|
16
20
|
/**
|
package/package.json
CHANGED