Since v3.428.0 updates on a DynamoDB table fail with a TypeError. It worked up to v3.427.0. The call of new UpdateCommand(...) is ok, but sending the call to DynamoDB fails. The properties of the UpdateCommand result are different between v3.428.0 and v3.427.0, which may lead to...
AWS DynamoDB文档中的文档并不是很难使用。 i我想使用更新命令将JavaScript对象插入与主键匹配的对象上的所有键。 看着UpdateCommand InsertCommand我认为这样很简单: async updateItem(tableName: string, primaryKeyName: string, id: string, item: { [key: string]: any }) { const input: UpdateCommand...