I have a table like:
{
"pKey": 10001,
"items": [
{
"name": "A",
"value": 100
},
{
"name": "B",
"value": 100
}
]
}
I would like to update all value
attributes in items
list to be 200, items
list can have 1 to n objects.
How can I do that using boto3 python dynamoDB low-level client APIs?