Module Values.InputFormatConfigurationSource

Specifies the deserializer you want to use to convert the format of the input data. This parameter is required if Enabled is set to true.

Sourcetype nonrec t = {
  1. deserializer : Deserializer.t option;
    (*

    Specifies which deserializer to use. You can choose either the Apache Hive JSON SerDe or the OpenX JSON SerDe. If both are non-null, the server rejects the request.

    *)
}
Sourceval make : ?deserializer:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Structure of (string * [> `Boolean of BooleanObject.t | `List of [> `String of NonEmptyString.t ] list | `Map of ([> `String of NonEmptyStringWithoutWhitespace.t ] * [> `String of NonEmptyString.t ]) list ]) list ]) 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