亚马逊lambda dynamodb update_item()只接受关键字参数

时间:2017-10-13 17:56:47

标签: python amazon-dynamodb aws-lambda keyword-argument

我第一次尝试使用update_item在dynamodb中保存数据。在我的项目的另一个领域,我成功地使用了put_item()。对于这个新的代码区域,我只保存更改的项目,使数据库中的项目保持不变。因此,我需要使用update_item()。但是,我似乎无法弄清楚为什么我的语法对于API调用不正确。我直接在亚马逊UI中使用它。

这是我的python代码:

from __future__ import print_function
import json
import boto3

print('Loading function')

def saveScreenData(event, context):

    dynamodb = boto3.client('dynamodb', region_name='us-east-1', endpoint_url="https://dynamodb.us-east-1.amazonaws.com")

    print('The event: {}'.format(event))

    key = {}
    key['UID'] = event['uid']
    key['screenId'] = event['screenid']
    print('Key: {}'.format(key))

    for item, val in event.items():

        if item != 'uid' and item != 'screenid':
            print("Saving!")
            response = dynamodb.update_item({ 
                "TableName" : "ScreenData",
                "Key" : key,
                "UpdateExpression" : "SET #attrName = :attrValue",
                "ExpressionAttributeNames" : {
                    "#attrName" : item
                },
                "ExpressionAttributeValues" : {
                    ":attrValue" : val
                }
            })

            print('Response: {}'.format(response))


    return response

这是输出:

START RequestId: 2da9412a-b03d-11e7-9dc8-8fcb305833f6 Version: $LATEST
The event: {'article': '<p>↵    First!↵</p>', 'screenid': '13', 'uid': '0', 'section1': '<h1>↵    Second↵</h1>'}
Key: {'UID': '0', 'screenId': '13'}
Saving!
update_item() only accepts keyword arguments.: TypeError
Traceback (most recent call last):
  File "/var/task/saveScreenData.py", line 30, in saveScreenData
    ":attrValue" : val
  File "/var/runtime/botocore/client.py", line 310, in _api_call
    "%s() only accepts keyword arguments." % py_operation_name)
TypeError: update_item() only accepts keyword arguments.

END RequestId: 2da9412a-b03d-11e7-9dc8-8fcb305833f6

我已经研究了update_item文档(https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_UpdateItem.html),并在此问题之后对我的查询建模了mkobit(https://stackoverflow.com/users/627727/mkobit):https://stackoverflow.com/a/30604746/8027640

我玩过语法的变化,包括添加词典{&#34; S&#34; :&#34;也许这可以&#34;}而不是我的变量val,并且还尝试将变量更改为某些静态内容以查看它是否有效,但没有运气。

显然这是一个语法问题,但我无法追踪它。建议?

1 个答案:

答案 0 :(得分:1)

我认为您使用的示例基于$ rm -rf Gemfile.lock $ rails tmp:clear $ rails tmp:create ,与boto2相比具有完全不同的界面。

相反,查看the boto3 documentation,您应该使用关键字参数作为错误状态(并且您正在使用字典)。 您的请求应该大致如下:

boto3