Module Values_0.BatchDeletePartitionRequestSource

Deletes one or more partitions in a batch operation.

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

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

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

    The name of the catalog database in which the table in question resides.

    *)
  3. tableName : NameString.t;
    (*

    The name of the table that contains the partitions to be deleted.

    *)
  4. partitionsToDelete : BatchDeletePartitionValueList.t;
    (*

    A list of PartitionInput structures that define the partitions to be deleted.

    *)
}
Sourceval context_ : string
Sourceval make : ?catalogId:??? -> databaseName:NameString.t -> tableName:NameString.t -> partitionsToDelete:BatchDeletePartitionValueList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `String of ValueString.t ] list ]) list ] list | `String of 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