list_global_tables¶
Operation¶
list_global_tables
async
¶
list_global_tables(input: ListGlobalTablesInput, plugins: list[Plugin] | None = None) -> ListGlobalTablesOutput
Lists all global tables that have a replica in the specified Region.
Warning
This documentation is for version 2017.11.29 (Legacy) of global tables, which should be avoided for new global tables. Customers should use Global Tables version 2019.11.21 (Current) when possible, because it provides greater flexibility, higher efficiency, and consumes less write capacity than 2017.11.29 (Legacy).
To determine which version you're using, see Determining the global table version you are using. To update existing global tables from version 2017.11.29 (Legacy) to version 2019.11.21 (Current), see Upgrading global tables.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input
|
ListGlobalTablesInput
|
An instance of |
required |
plugins
|
list[Plugin] | None
|
A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations. |
None
|
Returns:
| Type | Description |
|---|---|
ListGlobalTablesOutput
|
An instance of |
Input¶
ListGlobalTablesInput
dataclass
¶
Dataclass for ListGlobalTablesInput structure.
Attributes¶
exclusive_start_global_table_name
class-attribute
instance-attribute
¶
exclusive_start_global_table_name: str | None = None
The first global table name that this operation will evaluate.
limit
class-attribute
instance-attribute
¶
limit: int | None = None
The maximum number of table names to return, if the parameter is not specified DynamoDB defaults to 100.
If the number of global tables DynamoDB finds reaches this limit, it
stops the operation and returns the table names collected up to that
point, with a table name in the LastEvaluatedGlobalTableName to apply
in a subsequent operation to the ExclusiveStartGlobalTableName
parameter.
Output¶
ListGlobalTablesOutput
dataclass
¶
Dataclass for ListGlobalTablesOutput structure.