Struct aws_sdk_glue::model::csv_classifier::Builder
source · pub struct Builder { /* private fields */ }Expand description
A builder for CsvClassifier.
Implementations§
source§impl Builder
impl Builder
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
The time that this classifier was registered.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
The time that this classifier was registered.
sourcepub fn last_updated(self, input: DateTime) -> Self
pub fn last_updated(self, input: DateTime) -> Self
The time that this classifier was last updated.
sourcepub fn set_last_updated(self, input: Option<DateTime>) -> Self
pub fn set_last_updated(self, input: Option<DateTime>) -> Self
The time that this classifier was last updated.
sourcepub fn set_version(self, input: Option<i64>) -> Self
pub fn set_version(self, input: Option<i64>) -> Self
The version of this classifier.
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. It 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. It 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 custom datatype to be configured.
sourcepub fn set_custom_datatype_configured(self, input: Option<bool>) -> Self
pub fn set_custom_datatype_configured(self, input: Option<bool>) -> Self
Enables the custom datatype to be configured.
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.
A list of custom datatypes including "BINARY", "BOOLEAN", "DATE", "DECIMAL", "DOUBLE", "FLOAT", "INT", "LONG", "SHORT", "STRING", "TIMESTAMP".
sourcepub fn set_custom_datatypes(self, input: Option<Vec<String>>) -> Self
pub fn set_custom_datatypes(self, input: Option<Vec<String>>) -> Self
A list of custom datatypes including "BINARY", "BOOLEAN", "DATE", "DECIMAL", "DOUBLE", "FLOAT", "INT", "LONG", "SHORT", "STRING", "TIMESTAMP".
sourcepub fn build(self) -> CsvClassifier
pub fn build(self) -> CsvClassifier
Consumes the builder and constructs a CsvClassifier.