Module Values_1.CreateCsvClassifierRequestSource

Specifies a custom CSV classifier for CreateClassifier to create.

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

    The name of the classifier.

    *)
  2. delimiter : CsvColumnDelimiter.t option;
    (*

    A custom symbol to denote what separates each column entry in the row.

    *)
  3. quoteSymbol : CsvQuoteSymbol.t option;
    (*

    A custom symbol to denote what combines content into a single column value. Must be different from the column delimiter.

    *)
  4. containsHeader : CsvHeaderOption.t option;
    (*

    Indicates whether the CSV file contains a header.

    *)
  5. header : CsvHeader.t option;
    (*

    A list of strings representing column names.

    *)
  6. disableValueTrimming : Values_0.NullableBoolean.t option;
    (*

    Specifies not to trim values before identifying the type of column values. The default value is true.

    *)
  7. allowSingleColumn : Values_0.NullableBoolean.t option;
    (*

    Enables the processing of files that contain only one column.

    *)
  8. customDatatypeConfigured : Values_0.NullableBoolean.t option;
    (*

    Enables the configuration of custom datatypes.

    *)
  9. customDatatypes : CustomDatatypes.t option;
    (*

    Creates a list of supported custom datatypes.

    *)
  10. serde : CsvSerdeOption.t option;
    (*

    Sets the SerDe for processing CSV in the classifier, which will be applied in the Data Catalog. Valid values are OpenCSVSerDe, LazySimpleSerDe, and None. You can specify the None value when you want the crawler to do the detection.

    *)
}
Sourceval context_ : string
Sourceval make : ?delimiter:??? -> ?quoteSymbol:??? -> ?containsHeader:??? -> ?header:??? -> ?disableValueTrimming:??? -> ?allowSingleColumn:??? -> ?customDatatypeConfigured:??? -> ?customDatatypes:??? -> ?serde:??? -> name:Values_0.NameString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.NullableBoolean.t | `Enum of string | `List of [> `String of Values_0.NameString.t ] list | `String of Values_0.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