У меня есть многошаговый процесс, в котором я
- извлекаю массив объектов из DynamoDB
- манипулирую значениями атрибутов определенных объектов
- записываю эти объекты обратно в DynamoDB
Как яЯ использую метод putItem. Мне было интересно, нужно ли мне помещать каждый атрибут объекта при его отправке в DynamoDB.Или есть возможность отправить весь объект как один «элемент» ?
//++++++++++++++++++++++++++
//1) The data-Object I retrieve from Dynamodyb:
data = { Item:
{ score: 90,
gtin_RefBook: 'a',
directConnection: true,
gtin_RecBook: 'u'
}
}
//++++++++++++++++++++++++++
// 2) The manipulation I perform on the object:
data.Item.score = 99;
//++++++++++++++++++++++++++
// 3) Current code to write the information back to DynamoDB (as part of the params to be passed to putItem)
Item: {
"gtin_RefBook": gtinRefBook,
"gtin_RecBook": gtinRecBook,
"score": 90,
"directConnection": true
}
//##########################################################################
// **What I would like to do instead:**
Item: {data}
// so that I can just use the updated data-Object. Is there a possibility to do this?