Struct aws_sdk_glue::types::builders::CsvClassifierBuilder
source · #[non_exhaustive]pub struct CsvClassifierBuilder { /* private fields */ }Expand description
A builder for CsvClassifier.
Implementations§
source§impl CsvClassifierBuilder
impl CsvClassifierBuilder
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 get_creation_time(&self) -> &Option<DateTime>
pub fn get_creation_time(&self) -> &Option<DateTime>
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 get_last_updated(&self) -> &Option<DateTime>
pub fn get_last_updated(&self) -> &Option<DateTime>
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 get_version(&self) -> &Option<i64>
pub fn get_version(&self) -> &Option<i64>
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 get_delimiter(&self) -> &Option<String>
pub fn get_delimiter(&self) -> &Option<String>
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 get_quote_symbol(&self) -> &Option<String>
pub fn get_quote_symbol(&self) -> &Option<String>
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 get_contains_header(&self) -> &Option<CsvHeaderOption>
pub fn get_contains_header(&self) -> &Option<CsvHeaderOption>
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 get_header(&self) -> &Option<Vec<String>>
pub fn get_header(&self) -> &Option<Vec<String>>
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 get_disable_value_trimming(&self) -> &Option<bool>
pub fn get_disable_value_trimming(&self) -> &Option<bool>
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 get_allow_single_column(&self) -> &Option<bool>
pub fn get_allow_single_column(&self) -> &Option<bool>
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 get_custom_datatype_configured(&self) -> &Option<bool>
pub fn get_custom_datatype_configured(&self) -> &Option<bool>
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 get_custom_datatypes(&self) -> &Option<Vec<String>>
pub fn get_custom_datatypes(&self) -> &Option<Vec<String>>
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.
Trait Implementations§
source§impl Clone for CsvClassifierBuilder
impl Clone for CsvClassifierBuilder
source§fn clone(&self) -> CsvClassifierBuilder
fn clone(&self) -> CsvClassifierBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CsvClassifierBuilder
impl Debug for CsvClassifierBuilder
source§impl Default for CsvClassifierBuilder
impl Default for CsvClassifierBuilder
source§fn default() -> CsvClassifierBuilder
fn default() -> CsvClassifierBuilder
source§impl PartialEq<CsvClassifierBuilder> for CsvClassifierBuilder
impl PartialEq<CsvClassifierBuilder> for CsvClassifierBuilder
source§fn eq(&self, other: &CsvClassifierBuilder) -> bool
fn eq(&self, other: &CsvClassifierBuilder) -> bool
self and other values to be equal, and is used
by ==.