我正在尝试致电getItem
到DynamoDB。我使用的是文档中的代码示例,但是,我得到的只是 null 。
table
的表。id
(数字)。Allow: dynamodb:GetItem
的权限我的item
和id
中的123
附加了几行,我想在控制台日志中全部检索它们。
// Load the AWS SDK for Node.js
var AWS = require('aws-sdk');
// Set the region
AWS.config.update({ region: 'eu-central-1' });
exports.handler = async (event) => {
// Create the DynamoDB service object
ddb = new AWS.DynamoDB({ apiVersion: '2012-10-08' });
var params = {
TableName: 'table',
Key: {
'id': { N: '123' },
}
};
// Call DynamoDB to read the item from the table
ddb.getItem(params, function (err, data) {
if (err) {
console.log("Error", err);
} else {
console.log("Success", data.Item);
}
});
};
答案 0 :(得分:0)
您的getItems调用是异步的,并且在dynamodb调用返回结果之前,Lambda函数已经完成,因此为什么什么都没有记录。您的实际数据库调用可能工作正常。
答案 1 :(得分:0)
这是我的lambda函数的示例(请将执行环境更改为Node.js 6.10以及表和ID名称和值)。这可行,并记录一些信息。请尝试...
'use strict';
const aws = require('aws-sdk');
const dbCon = new aws.DynamoDB({apiVersion: '2012-08-10'});
exports.handler = (event, context, callback) => {
var params = {
TableName: "trans",
Key: {
"transid": {"S": "Bk6ZQF0Q7"}
}
};
console.log("Attempting a call getitem...");
dbCon.getItem(params, function (err, data) {
if (err) {
console.error("Unable to getItem. Error JSON:", JSON.stringify(err, null, 2));
}
else {
console.log("getItem succeeded:", JSON.stringify(data, null, 2));
}
});
const response = {
statusCode: 200,
body: JSON.stringify('Hello from Lambda!'),
};
callback(null, response);
};
答案 2 :(得分:0)
var AWS = require('aws-sdk');
// Set the region
AWS.config.update({region: 'REGION'});
exports.handler = (event, context, callback) => {
// Create the DynamoDB service object
ddb = new AWS.DynamoDB({apiVersion: '2012-10-08'});
var params = {
TableName: 'TABLE',
Key: {
'KEY_NAME' : {N: '123'},
},
ProjectionExpression: 'ATTRIBUTE_NAME'
};
// Call DynamoDB to read the item from the table
ddb.getItem(params, function(err, data) {
if (err) {
console.log("Error", err);
} else {
console.log("Success", data.Item);
}
});
}
这是我的lambda示例,您可以尝试。