Module Values_1.DeleteTableRequestSource

Removes a table definition from the Data Catalog. After completing this operation, you no longer have access to the table versions and partitions that belong to the deleted table. 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 DeleteTable, use DeleteTableVersion or BatchDeleteTableVersion, and DeletePartition or BatchDeletePartition, to delete any resources that belong to the table.

Sourcetype nonrec t = {
  1. catalogId : Values_0.CatalogIdString.t option;
    (*

    The ID of the Data Catalog where the table resides. If none is provided, the Amazon Web Services account ID is used by default.

    *)
  2. databaseName : Values_0.NameString.t;
    (*

    The name of the catalog database in which the table resides. For Hive compatibility, this name is entirely lowercase.

    *)
  3. name : Values_0.NameString.t;
    (*

    The name of the table to be deleted. For Hive compatibility, this name is entirely lowercase.

    *)
  4. transactionId : Values_0.TransactionIdString.t option;
    (*

    The transaction ID at which to delete the table contents.

    *)
}
Sourceval context_ : string
Sourceval make : ?catalogId:??? -> ?transactionId:??? -> databaseName:Values_0.NameString.t -> name:Values_0.NameString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.CatalogIdString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t