awswrangler.catalog.delete_database¶
- awswrangler.catalog.delete_database(name: str, catalog_id: str | None = None, boto3_session: Session | None = None) None ¶
Delete a database in AWS Glue Catalog.
Note
This function has arguments which can be configured globally through wr.config or environment variables:
catalog_id
Check out the Global Configurations Tutorial for details.
- Parameters:
name (
str
) – Database name.catalog_id (
str
|None
) – 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 (
Session
|None
) – The default boto3 session will be used if boto3_session receiveNone
.
- Return type:
None
Examples
>>> import awswrangler as wr >>> wr.catalog.delete_database( ... name='awswrangler_test' ... )