如何通过在Java脚本中调用lambda函数从dynamo db中仅获取单列数据?
最佳答案
通过使用ProjectionExpression,我们可以获得单列。
eg:
{
"TableName" : "your table name",
"ProjectionExpression" : "column name"
}
你可以用这个
http://docs.aws.amazon.com/amazondynamodb/latest/gettingstartedguide/GettingStarted.NodeJs.04.html
关于javascript - 使用Lambda从DynamoDb读取单列数据,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37718695/