Module Values_0.SerDeInfoSource

Information about a serialization/deserialization program (SerDe) that serves as an extractor and loader.

Sourcetype nonrec t = {
  1. name : NameString.t option;
    (*

    Name of the SerDe.

    *)
  2. serializationLibrary : NameString.t option;
    (*

    Usually the class that implements the SerDe. An example is org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe.

    *)
  3. parameters : ParametersMap.t option;
    (*

    These key-value pairs define initialization parameters for the SerDe.

    *)
}
Sourceval make : ?name:??? -> ?serializationLibrary:??? -> ?parameters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of KeyString.t ] * [> `String of ParametersMapValue.t ]) list | `String of NameString.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