-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbatchWriteItem.js
59 lines (59 loc) · 2.01 KB
/
batchWriteItem.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
var params = {
RequestItems: { // A map of TableName to Put or Delete requests for that table
poppies: [ // a list of Put or Delete requests for that table
{ // An example PutRequest
PutRequest: {
Item: { // a map of attribute name to AttributeValue
// attribute_value (string | number | boolean | null | Binary | DynamoDBSet | Array | Object)
date: 1,
time: 1,
lastName: 'Davis',
firstName: 'James',
rank: 'Private',
nickname: 'Joker',
// ... more attributes ...
}
}
},
{
PutRequest: {
Item: {
date: 2,
time: 2,
lastName: 'Pyle',
firstName: 'Gomer',
rank: 'Private',
}
}
},
{
PutRequest: {
Item: {
date: 3,
time: 3,
lastName: 'Hartman',
firstName: 'L',
rank: 'Gunnery Sergeant',
}
}
},
// { // An example DeleteRequest
// DeleteRequest: {
// Key: {
// date: 3, //(string | number | boolean | null | Binary)
// // more primary attributes (if the primary key is hash/range schema)
// time: 3,
// }
// }
// },
// ... more put or delete requests ...
],
// ... more tables ...
},
ReturnConsumedCapacity: 'TOTAL', // optional (NONE | TOTAL | INDEXES)
ReturnItemCollectionMetrics: 'TOTAL', // optional (NONE | SIZE)
};
docClient.batchWrite(params, function(err, data) {
if (err) ppJson(err); // an error occurred
else ppJson(data); // successful response
});