How to update the nested JSON file in DynamoDB -
there map structure in dynamodb , wonder how can update it. example if map structure like: {a {b {c, d, e}}}, code should write if want delete e or want delete b , included in b (c,d,e)?
for case:
- do updateitem
updateexpression="delete a.b.e" - do updateitem
updateexpression="delete a.b"
case 2 delete nested attribute e, e inside a.b, case 2 superset of change described case 1.
Comments
Post a Comment