Module Values.CSVOutputSource

Contains information about the comma-separated value (CSV) file that the job results are stored in.

Sourcetype nonrec t = {
  1. quoteFields : QuoteFields.t option;
    (*

    A value that indicates whether all output fields should be contained within quotation marks.

    *)
  2. quoteEscapeCharacter : String_.t option;
    (*

    A single character used for escaping the quotation-mark character inside an already escaped value.

    *)
  3. recordDelimiter : String_.t option;
    (*

    A value used to separate individual records from each other.

    *)
  4. fieldDelimiter : String_.t option;
    (*

    A value used to separate individual fields from each other within a record.

    *)
  5. quoteCharacter : String_.t option;
    (*

    A value used as an escape character where the field delimiter is part of the value.

    *)
}
Sourceval make : ?quoteFields:??? -> ?quoteEscapeCharacter:??? -> ?recordDelimiter:??? -> ?fieldDelimiter:??? -> ?quoteCharacter:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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