awswrangler.catalog.get_table_versions¶
- awswrangler.catalog.get_table_versions(database: str, table: str, catalog_id: str | None = None, boto3_session: Session | None = None) list[dict[str, Any]]¶
Get all versions.
- Parameters:
database (
str) – Database name.table (
str) – Table name.catalog_id (
str|None) – The ID of the Data Catalog from which to retrieve Databases. IfNoneis provided, the AWS account ID is used by default.boto3_session (
Session|None) – The default boto3 session will be used if boto3_session receiveNone.
- Return type:
list[dict[str,Any]]- Returns:
List of table inputs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/glue.html#Glue.Client.get_table_versions
Examples
>>> import awswrangler as wr >>> tables_versions = wr.catalog.get_table_versions(database="...", table="...")