awswrangler.catalog.get_table_parameters

awswrangler.catalog.get_table_parameters(database: str, table: str, catalog_id: str | None = None, boto3_session: Session | None = None) dict[str, str]

Get all parameters.

Parameters:
  • database (str) – Database name.

  • table (str) – Table name.

  • catalog_id (str, optional) – The ID of the Data Catalog from which to retrieve Databases. If none is provided, the AWS account ID is used by default.

  • boto3_session (boto3.Session(), optional) – Boto3 Session. The default boto3 session will be used if boto3_session receive None.

Returns:

Dictionary of parameters.

Return type:

Dict[str, str]

Examples

>>> import awswrangler as wr
>>> pars = wr.catalog.get_table_parameters(database="...", table="...")