fab*_*nod 3 python amazon-web-services amazon-dynamodb boto3 aws-lambda
我在 lambda 函数中使用 boto3 将信息写入 dynamodb 表。
我收到错误put_item() only accepts keyword arguments。
在网上搜索,我发现这个错误可能意味着我没有匹配 dynamodb 分区键,但在我看来我做的一切都是正确的。
谁能帮我找出错误?对不起,这是我第一次使用 aws。
这是我的 lambda 函数
import json, boto3
def updateDynamo(Item):
dynamodb = boto3.resource('dynamodb', region_name = 'eu-central-1')
table = dynamodb.Table('userInformations')
response = table.put_item(Item)
return response
def lambda_handler(event, context):
userAttributes = event["request"]["userAttributes"]
email = userAttributes["email"]
name = userAttributes["name"]
Item = {
"email": email,
"name" : name
}
response = updateDynamo(Item)
print(email, name)
return {
'statusCode': 200,
'body': json.dumps('Hello from Lambda!')
}
Run Code Online (Sandbox Code Playgroud)
这是我正在使用的测试事件:
{
"version": "string",
"triggerSource": "string",
"region": "AWSRegion",
"userPoolId": "string",
"userName": "string",
"callerContext": {
"awsSdkVersion": "string",
"clientId": "string"
},
"request": {
"userAttributes": {
"email": "testemail@gmail.com",
"name": "test user"
}
},
"response": {}
}
Run Code Online (Sandbox Code Playgroud)
我的表email(所有字符都是小写)作为分区键。
put_item只需要关键字参数。这意味着,在您的情况下,而不是:
response = table.put_item(Item)
Run Code Online (Sandbox Code Playgroud)
应该有
response = table.put_item(Item=Item)
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
1562 次 |
| 最近记录: |