You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::Glue::Types::UpdateCsvClassifierRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::UpdateCsvClassifierRequest
- Defined in:
- (unknown)
Overview
When passing UpdateCsvClassifierRequest as input to an Aws::Client method, you can use a vanilla 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,
}
Specifies a custom CSV classifier to be updated.
Returned by:
Instance Attribute Summary collapse
-
#allow_single_column ⇒ Boolean
Enables the processing of files that contain only one column.
-
#contains_header ⇒ String
Indicates whether the CSV file contains a header.
-
#delimiter ⇒ String
A custom symbol to denote what separates each column entry in the row.
-
#disable_value_trimming ⇒ Boolean
Specifies not to trim values before identifying the type of column values.
-
#header ⇒ Array<String>
A list of strings representing column names.
-
#name ⇒ String
The name of the classifier.
-
#quote_symbol ⇒ String
A custom symbol to denote what combines content into a single column value.
Instance Attribute Details
#allow_single_column ⇒ Boolean
Enables the processing of files that contain only one column.
#contains_header ⇒ String
Indicates whether the CSV file contains a header.
Possible values:
- UNKNOWN
- PRESENT
- ABSENT
#delimiter ⇒ String
A custom symbol to denote what separates each column entry in the row.
#disable_value_trimming ⇒ Boolean
Specifies not to trim values before identifying the type of column values. The default value is true.
#header ⇒ Array<String>
A list of strings representing column names.
#name ⇒ String
The name of the classifier.
#quote_symbol ⇒ String
A custom symbol to denote what combines content into a single column value. It must be different from the column delimiter.