Struct aws_sdk_glue::model::create_csv_classifier_request::Builder
source · pub struct Builder { /* private fields */ }Expand description
A builder for CreateCsvClassifierRequest.
Implementations§
source§impl Builder
impl Builder
sourcepub fn delimiter(self, input: impl Into<String>) -> Self
pub fn delimiter(self, input: impl Into<String>) -> Self
A custom symbol to denote what separates each column entry in the row.
sourcepub fn set_delimiter(self, input: Option<String>) -> Self
pub fn set_delimiter(self, input: Option<String>) -> Self
A custom symbol to denote what separates each column entry in the row.
sourcepub fn quote_symbol(self, input: impl Into<String>) -> Self
pub fn quote_symbol(self, input: impl Into<String>) -> Self
A custom symbol to denote what combines content into a single column value. Must be different from the column delimiter.
sourcepub fn set_quote_symbol(self, input: Option<String>) -> Self
pub fn set_quote_symbol(self, input: Option<String>) -> Self
A custom symbol to denote what combines content into a single column value. Must be different from the column delimiter.
sourcepub fn contains_header(self, input: CsvHeaderOption) -> Self
pub fn contains_header(self, input: CsvHeaderOption) -> Self
Indicates whether the CSV file contains a header.
sourcepub fn set_contains_header(self, input: Option<CsvHeaderOption>) -> Self
pub fn set_contains_header(self, input: Option<CsvHeaderOption>) -> Self
Indicates whether the CSV file contains a header.
sourcepub fn header(self, input: impl Into<String>) -> Self
pub fn header(self, input: impl Into<String>) -> Self
Appends an item to header.
To override the contents of this collection use set_header.
A list of strings representing column names.
sourcepub fn set_header(self, input: Option<Vec<String>>) -> Self
pub fn set_header(self, input: Option<Vec<String>>) -> Self
A list of strings representing column names.
sourcepub fn disable_value_trimming(self, input: bool) -> Self
pub fn disable_value_trimming(self, input: bool) -> Self
Specifies not to trim values before identifying the type of column values. The default value is true.
sourcepub fn set_disable_value_trimming(self, input: Option<bool>) -> Self
pub fn set_disable_value_trimming(self, input: Option<bool>) -> Self
Specifies not to trim values before identifying the type of column values. The default value is true.
sourcepub fn allow_single_column(self, input: bool) -> Self
pub fn allow_single_column(self, input: bool) -> Self
Enables the processing of files that contain only one column.
sourcepub fn set_allow_single_column(self, input: Option<bool>) -> Self
pub fn set_allow_single_column(self, input: Option<bool>) -> Self
Enables the processing of files that contain only one column.
sourcepub fn custom_datatype_configured(self, input: bool) -> Self
pub fn custom_datatype_configured(self, input: bool) -> Self
Enables the configuration of custom datatypes.
sourcepub fn set_custom_datatype_configured(self, input: Option<bool>) -> Self
pub fn set_custom_datatype_configured(self, input: Option<bool>) -> Self
Enables the configuration of custom datatypes.
sourcepub fn custom_datatypes(self, input: impl Into<String>) -> Self
pub fn custom_datatypes(self, input: impl Into<String>) -> Self
Appends an item to custom_datatypes.
To override the contents of this collection use set_custom_datatypes.
Creates a list of supported custom datatypes.
sourcepub fn set_custom_datatypes(self, input: Option<Vec<String>>) -> Self
pub fn set_custom_datatypes(self, input: Option<Vec<String>>) -> Self
Creates a list of supported custom datatypes.
sourcepub fn build(self) -> CreateCsvClassifierRequest
pub fn build(self) -> CreateCsvClassifierRequest
Consumes the builder and constructs a CreateCsvClassifierRequest.