Skip to content

Delete Catalog

glue_delete_catalog R Documentation

Removes the specified catalog from the Glue Data Catalog

Description

Removes the specified catalog from the Glue Data Catalog.

After completing this operation, you no longer have access to the databases, tables (and all table versions and partitions that might belong to the tables) and the user-defined functions in the deleted catalog. Glue deletes these "orphaned" resources asynchronously in a timely manner, at the discretion of the service.

To ensure the immediate deletion of all related resources before calling the delete_catalog operation, use delete_table_version (or batch_delete_table_version), delete_partition (or batch_delete_partition), delete_table (or batch_delete_table), delete_user_defined_function and delete_database to delete any resources that belong to the catalog.

Usage

glue_delete_catalog(CatalogId)

Arguments

CatalogId

[required] The ID of the catalog.

Value

An empty list.

Request syntax

svc$delete_catalog(
  CatalogId = "string"
)