boto.dynamodb2.exceptions.ValidationException: ValidationException: 400 Bad Request
{'__type': 'com.amazon.coral.validate#ValidationException', 'message': 'One or more parameter values were invalid: Type mismatch for key restoreid expected: S actual: M'}
我有一个带有 id 的简单表格测试
我正在尝试将 id 插入到具有字符串数据类型的表中。主分区键是 id(string)
table = Table("test")
stringjson="{\"id\": {\"S\": \"4343\"}}"
item_data = json.loads(stringjson)
table.put_item(data=item_data)
我收到上面提到的错误。有什么建议么?