如何使用 aws Lambda 和 python 将项目放入 aws DynamoDb

问题描述

在 AWS Lambda 中使用 python,我如何从 DynamoDB 表中放置/获取项目?

Using python in AWS Lambda, how do I put/get an item from a DynamoDB table?

在 Node.js 中是这样的:

In Node.js this would be something like:

dynamodb.getItem({
    "Key": {"fruitName" : 'banana'},
    "TableName": "fruitSalad"
}, function(err, data) {
    if (err) {
        context.fail('Incorrect username or password');
    } else {
        context.succeed('yay it works');
    }
});

我只需要 python 等价物.

All I need is the python equivalent.


解决方案

使用 Boto3(最新 AWS SDK for python)

Using Boto3 (Latest AWS SDK for python)

你导入它

import boto3

然后通过调用客户端

dynamodb = boto3.client('dynamodb')

获取项目示例

dynamodb.get_item(TableName='fruitSalad', Key={'fruitName':{'S':'Banana'}})

放物品示例

dynamodb.put_item(TableName='fruitSalad', Item={'fruitName':{'S':'Banana'},'key2':{'N':'value2'}})

'S'表示String值,'N'是数值

'S' indicates a String value, 'N' is a numeric value

对于其他数据类型,请参阅 http:///boto3.readthedocs.org/en/latest/reference/services/dynamodb.html#DynamoDB.Client.put_item

For other data types refer http://boto3.readthedocs.org/en/latest/reference/services/dynamodb.html#DynamoDB.Client.put_item

相关文章