如何使用DocumentClient执行此请求?
aws dynamodb describe-table --table-name MusicCollection
如何使用DocumentClient执行此请求?
aws dynamodb describe-table --table-name MusicCollection
文档客户端用于处理项目,但假设您的意思是如何使用 Javascript 进行操作,答案是这样的:
https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/DynamoDB.html#describeTable-property
var params = {
TableName: "MusicCollection"
};
dynamodb.describeTable(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});