Module Values.FormatOptionsSource

Represents a set of options that define the structure of either comma-separated value (CSV), Excel, or JSON input.

Sourcetype nonrec t = {
  1. json : JsonOptions.t option;
    (*

    Options that define how JSON input is to be interpreted by DataBrew.

    *)
  2. excel : ExcelOptions.t option;
    (*

    Options that define how Excel input is to be interpreted by DataBrew.

    *)
  3. csv : CsvOptions.t option;
    (*

    Options that define how CSV input is to be interpreted by DataBrew.

    *)
}
Sourceval make : ?json:??? -> ?excel:??? -> ?csv:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of MultiLine.t | `List of [> `Integer of SheetIndex.t | `String of SheetName.t ] list | `String of Delimiter.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