我是 Amazon Web Services 和 NodeJS 的初学者。
我编写了一个由 AWS IoT 触发的解析 JSON 的 Lambda 函数。
enter code here
use strict';
console.log('Loading function');
exports.handler = (event, context, callback) => {
console.log('Received event:', JSON.stringify(event, null, 2));
console.log('Id =', event.Id);
console.log('Ut =', event.Ut);
console.log('Temp =', event.Temp);
console.log('Rh =', event.Rh);
//callback(null, event.key1); // Echo back the first key value
//callback('Something went wrong');
};
现在我想将 json 字段存储到 DynamoDB 表中。
有什么建议吗?
非常感谢!