@aws-sdk/client-dynamodb
Version:
AWS SDK for JavaScript Dynamodb Client for Node.js, Browser and React Native
96 lines (95 loc) • 4.66 kB
TypeScript
import { Command as $Command } from "@smithy/smithy-client";
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient";
import type { ListGlobalTablesInput, ListGlobalTablesOutput } from "../models/models_0";
/**
* @public
*/
export type { __MetadataBearer };
export { $Command };
/**
* @public
*
* The input for {@link ListGlobalTablesCommand}.
*/
export interface ListGlobalTablesCommandInput extends ListGlobalTablesInput {
}
/**
* @public
*
* The output of {@link ListGlobalTablesCommand}.
*/
export interface ListGlobalTablesCommandOutput extends ListGlobalTablesOutput, __MetadataBearer {
}
declare const ListGlobalTablesCommand_base: {
new (input: ListGlobalTablesCommandInput): import("@smithy/smithy-client").CommandImpl<ListGlobalTablesCommandInput, ListGlobalTablesCommandOutput, DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
new (...[input]: [] | [ListGlobalTablesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListGlobalTablesCommandInput, ListGlobalTablesCommandOutput, DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
/**
* <p>Lists all global tables that have a replica in the specified Region.</p>
* <important>
* <p>This documentation is for version 2017.11.29 (Legacy) of global tables, which should be avoided for new global tables. Customers should use <a href="https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/GlobalTables.html">Global Tables version 2019.11.21 (Current)</a> when possible, because it provides greater flexibility, higher efficiency, and consumes less write capacity than 2017.11.29 (Legacy).</p>
* <p>To determine which version you're using, see <a href="https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.DetermineVersion.html">Determining the global table version you are using</a>. To update existing global tables from version 2017.11.29 (Legacy) to version 2019.11.21 (Current), see <a href="https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/V2globaltables_upgrade.html">Upgrading global tables</a>.</p>
* </important>
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
* import { DynamoDBClient, ListGlobalTablesCommand } from "@aws-sdk/client-dynamodb"; // ES Modules import
* // const { DynamoDBClient, ListGlobalTablesCommand } = require("@aws-sdk/client-dynamodb"); // CommonJS import
* // import type { DynamoDBClientConfig } from "@aws-sdk/client-dynamodb";
* const config = {}; // type is DynamoDBClientConfig
* const client = new DynamoDBClient(config);
* const input = { // ListGlobalTablesInput
* ExclusiveStartGlobalTableName: "STRING_VALUE",
* Limit: Number("int"),
* RegionName: "STRING_VALUE",
* };
* const command = new ListGlobalTablesCommand(input);
* const response = await client.send(command);
* // { // ListGlobalTablesOutput
* // GlobalTables: [ // GlobalTableList
* // { // GlobalTable
* // GlobalTableName: "STRING_VALUE",
* // ReplicationGroup: [ // ReplicaList
* // { // Replica
* // RegionName: "STRING_VALUE",
* // },
* // ],
* // },
* // ],
* // LastEvaluatedGlobalTableName: "STRING_VALUE",
* // };
*
* ```
*
* @param ListGlobalTablesCommandInput - {@link ListGlobalTablesCommandInput}
* @returns {@link ListGlobalTablesCommandOutput}
* @see {@link ListGlobalTablesCommandInput} for command's `input` shape.
* @see {@link ListGlobalTablesCommandOutput} for command's `response` shape.
* @see {@link DynamoDBClientResolvedConfig | config} for DynamoDBClient's `config` shape.
*
* @throws {@link InternalServerError} (server fault)
* <p>An error occurred on the server side.</p>
*
* @throws {@link InvalidEndpointException} (client fault)
*
* @throws {@link DynamoDBServiceException}
* <p>Base exception class for all service exceptions from DynamoDB service.</p>
*
*
* @public
*/
export declare class ListGlobalTablesCommand extends ListGlobalTablesCommand_base {
/** @internal type navigation helper, not in runtime. */
protected static __types: {
api: {
input: ListGlobalTablesInput;
output: ListGlobalTablesOutput;
};
sdk: {
input: ListGlobalTablesCommandInput;
output: ListGlobalTablesCommandOutput;
};
};
}