Amazon dynamodb 如何使用boto3更新dynamodb中列表中的列表

Amazon dynamodb 如何使用boto3更新dynamodb中列表中的列表,amazon-dynamodb,boto3,Amazon Dynamodb,Boto3,我在dynamodb有一张桌子,看起来像这样 {"category": "geographie", "words": [ { "hilfestellung": [ "Hauptstadt von Belgien", "Die Schokolade ist berühmt" ], "user": [ "useridxyz" ], "word": "brüssel" },

我在dynamodb有一张桌子,看起来像这样

{"category": "geographie",
  "words": [
    {
      "hilfestellung": [
        "Hauptstadt von Belgien",
        "Die Schokolade ist berühmt"
      ],
      "user": [
        "useridxyz"
      ],
      "word": "brüssel"
    },
    {
      "hilfestellung": [
        "Hauptstadt von Deutschland",
        "Die Fußballmannschaft heisst Hertha BSC"
      ],
      "user": [],
      "word": "berlin"
    }
  ]
}

如何使用python和boto3在列表
user
中添加一个新的userId,其中
word
等于brüssel?我找到了如何在boto3中添加新列表项,但找不到如何在列表列表中添加项。

这个问题是否正确?这看起来不像一棵dynamodb树。。。