var dynamodb = new AWS.DynamoDB({ region: 'us-east-1', endpoint: "http://localhost:8000" }); var params = { ExclusiveStartTableName: 'local_', Limit: 10, // optional (to further limit the number of table names returned per page) }; dynamodb.listTables(params, function(err, data) { if (err) ppJson(err); // an error occurred else ppJson(data); // successful response });
リージョンが未指定だと何故か「us-west-2」になる模様
ExclusiveStartTableNameでテーブル名のprefixで絞り込むことができます。