使用DescribeTable介面可以查詢指定表的結構、預留讀/寫輸送量詳情等資訊。
前提條件
介面
/**
* 查詢指定表的結構資訊和預留讀/寫輸送量設定資訊。
*/
describeTable(params, callback)
參數
參數 | 說明 |
tableName | 表名。 |
樣本
以下樣本用於擷取表的最大版本數和資料生命週期等配置資訊。
var client = require('./client');
var params = {
tableName: 'sampleTable'
};
client.describeTable(params, function (err, data) {
if (err) {
console.log('error:', err);
return;
}
console.log('success:', data, 'maxVersions:', data.tableOptions.maxVersions, 'timeToLive:', data.tableOptions.timeToLive);
});
相關文檔
關於API說明的更多資訊,請參見DescribeTable。詳細代碼請參見DescribeTable@GitHub。
如果要讀寫表中資料,您可以通過調用讀寫資料介面實現。具體操作,請參見基礎資料操作。
如果要修改表的資料生命週期、最大版本數等資訊,您可以通過更新表實現。具體操作,請參見更新表。
如果不再使用資料表,您可以刪除資料表。具體操作,請參見刪除資料表。