list_tables
(**kwargs)¶List the tables in a database. If neither SchemaPattern
nor TablePattern
are specified, then all tables in the database are returned. A token is returned to page through the table list. Depending on the authorization method, use one of the following combinations of request parameters:
redshift:GetClusterCredentials
operation is required. When connecting to a serverless workgroup, specify the workgroup name and database name. Also, permission to call the redshift-serverless:GetCredentials
operation is required.For more information about the Amazon Redshift Data API and CLI usage examples, see Using the Amazon Redshift Data API in the Amazon Redshift Management Guide .
See also: AWS API Documentation
Request Syntax
response = client.list_tables(
ClusterIdentifier='string',
ConnectedDatabase='string',
Database='string',
DbUser='string',
MaxResults=123,
NextToken='string',
SchemaPattern='string',
SecretArn='string',
TablePattern='string',
WorkgroupName='string'
)
[REQUIRED]
The name of the database that contains the tables to list. If ConnectedDatabase
is not specified, this is also the database to connect to with your authentication credentials.
NextToken
is returned to page through the results.SchemaPattern
is not specified, then all tables that match TablePattern
are returned. If neither SchemaPattern
or TablePattern
are specified, then all tables are returned.TablePattern
is not specified, then all tables that match SchemaPattern
are returned. If neither SchemaPattern
or TablePattern
are specified, then all tables are returned.dict
Response Syntax
{
'NextToken': 'string',
'Tables': [
{
'name': 'string',
'schema': 'string',
'type': 'string'
},
]
}
Response Structure
(dict) --
NextToken (string) --
A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned NextToken value in the next NextToken parameter and retrying the command. If the NextToken field is empty, all response records have been retrieved for the request.
Tables (list) --
The tables that match the request pattern.
(dict) --
The properties of a table.
name (string) --
The name of the table.
schema (string) --
The schema containing the table.
type (string) --
The type of the table. Possible values include TABLE, VIEW, SYSTEM TABLE, GLOBAL TEMPORARY, LOCAL TEMPORARY, ALIAS, and SYNONYM.
Exceptions
RedshiftDataAPIService.Client.exceptions.ValidationException
RedshiftDataAPIService.Client.exceptions.InternalServerException
RedshiftDataAPIService.Client.exceptions.DatabaseConnectionException