我有一个使用DynamoDB作为后端的Web应用程序。我可以像这样建立连接:
AWS.config.update({
region: region,
accessKeyId: accessKeyId,
secretAccessKey: secretAccessKey
});
使用JavaScript我可以轻松地从表中检索数据:
var docClient = new AWS.DynamoDB.DocumentClient();
var params = {
TableName: tableName
};
docClient.scan(params, onScan);
function onScan(err, data) {
if (err) {
console.error("Unable to scan the table. Error JSON:", JSON.stringify(err, null, 2));
} else {
console.log(data);
}
}
现在我正在尝试在iOS应用程序中执行相同的操作。如何通过Mobile Hub访问或设置与现有DynamoDB表的连接?我看到的只是创建新NoSQL表的选项,但没有连接到现有表的选项。