File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
packages/util-dynamodb/src Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,11 @@ export interface marshallOptions {
105
105
*/
106
106
convertEmptyValues? : boolean ;
107
107
/**
108
- * Whether to remove undefined values while marshalling.
108
+ * Whether to remove undefined values from JS arrays/Sets/objects
109
+ * when marshalling to DynamoDB lists/sets/maps respectively.
110
+ *
111
+ * A DynamoDB item is not itself considered a map. Only
112
+ * attributes of an item are examined.
109
113
*/
110
114
removeUndefinedValues? : boolean ;
111
115
/**
Original file line number Diff line number Diff line change @@ -13,7 +13,11 @@ export interface marshallOptions {
13
13
*/
14
14
convertEmptyValues ?: boolean ;
15
15
/**
16
- * Whether to remove undefined values while marshalling.
16
+ * Whether to remove undefined values from JS arrays/Sets/objects
17
+ * when marshalling to DynamoDB lists/sets/maps respectively.
18
+ *
19
+ * A DynamoDB item is not itself considered a map. Only
20
+ * attributes of an item are examined.
17
21
*/
18
22
removeUndefinedValues ?: boolean ;
19
23
/**
You can’t perform that action at this time.
0 commit comments