Module Values_1.CreatePartitionIndexRequestSource

Creates a specified partition index in an existing table.

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

    The catalog ID where the table resides.

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

    Specifies the name of a database in which you want to create a partition index.

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

    Specifies the name of a table in which you want to create a partition index.

    *)
  4. partitionIndex : PartitionIndex.t;
    (*

    Specifies a PartitionIndex structure to create a partition index in an existing table.

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