Module Values_0.BatchGetTableOptimizerEntrySource

Represents a table optimizer to retrieve in the BatchGetTableOptimizer operation.

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

    The Catalog ID of the table.

    *)
  2. databaseName : DatabaseNameString.t option;
    (*

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

    *)
  3. tableName : TableNameString.t option;
    (*

    The name of the table.

    *)
  4. type_ : TableOptimizerType.t option;
    (*

    The type of table optimizer.

    *)
}
Sourceval make : ?catalogId:??? -> ?databaseName:??? -> ?tableName:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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