Module Values.InputSerializationSource

Describes the serialization format of the object.

Sourcetype nonrec t = {
  1. cSV : CSVInput.t option;
    (*

    Describes the serialization of a CSV-encoded object.

    *)
  2. compressionType : CompressionType.t option;
    (*

    Specifies object's compression format. Valid values: NONE, GZIP, BZIP2. Default Value: NONE.

    *)
  3. jSON : JSONInput.t option;
    (*

    Specifies JSON as object's input serialization format.

    *)
  4. parquet : ParquetInput.t option;
    (*

    Specifies Parquet as object's input serialization format.

    *)
}
Sourceval make : ?cSV:??? -> ?compressionType:??? -> ?jSON:??? -> ?parquet:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Boolean of AllowQuotedRecordDelimiter.t | `Enum of string | `String of Comments.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