aws dynamodb 使用GSI进行查询(query)

天大地大妈咪最大 提交于 2020-02-04 03:28:59
var aws = require('aws-sdk');
var docClient = new aws.DynamoDB.DocumentClient({region: 'ap-northeast-1'});


exports.handler = function (event, context) {
    
    var params = {
    TableName: "Thread",//表名
    IndexName: "thread-lastupadate_time-index",//GSI 索引名
    KeyConditionExpression: "thread = :thread",//GSI  分区键
    ExpressionAttributeValues: {
        ":thread": "thread"         //需查询的分区键值
    },
};
  docClient.query(params, function(err, data) {
  if (err) {
    console.log(err, err.stack);
  }else {
    console.log("Query succeeded.");  
    console.log(data);
    context.succeed(data);
  }
});


    
};

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!