class Aws::Glue::Types::UpdateCsvClassifierRequest

Specifies a custom CSV classifier to be updated.

@note When making an API call, you may pass UpdateCsvClassifierRequest

data as a hash:

    {
      name: "NameString", # required
      delimiter: "CsvColumnDelimiter",
      quote_symbol: "CsvQuoteSymbol",
      contains_header: "UNKNOWN", # accepts UNKNOWN, PRESENT, ABSENT
      header: ["NameString"],
      disable_value_trimming: false,
      allow_single_column: false,
    }

@!attribute [rw] name

The name of the classifier.
@return [String]

@!attribute [rw] delimiter

A custom symbol to denote what separates each column entry in the
row.
@return [String]

@!attribute [rw] quote_symbol

A custom symbol to denote what combines content into a single column
value. It must be different from the column delimiter.
@return [String]

@!attribute [rw] contains_header

Indicates whether the CSV file contains a header.
@return [String]

@!attribute [rw] header

A list of strings representing column names.
@return [Array<String>]

@!attribute [rw] disable_value_trimming

Specifies not to trim values before identifying the type of column
values. The default value is true.
@return [Boolean]

@!attribute [rw] allow_single_column

Enables the processing of files that contain only one column.
@return [Boolean]

@see docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateCsvClassifierRequest AWS API Documentation

Constants

SENSITIVE