Struct aws_sdk_glue::model::CsvClassifier
source · #[non_exhaustive]pub struct CsvClassifier { /* private fields */ }Expand description
A classifier for custom CSV content.
Implementations§
source§impl CsvClassifier
impl CsvClassifier
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The time that this classifier was registered.
sourcepub fn last_updated(&self) -> Option<&DateTime>
pub fn last_updated(&self) -> Option<&DateTime>
The time that this classifier was last updated.
sourcepub fn delimiter(&self) -> Option<&str>
pub fn delimiter(&self) -> Option<&str>
A custom symbol to denote what separates each column entry in the row.
sourcepub fn quote_symbol(&self) -> Option<&str>
pub fn quote_symbol(&self) -> Option<&str>
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) -> Option<&CsvHeaderOption>
pub fn contains_header(&self) -> Option<&CsvHeaderOption>
Indicates whether the CSV file contains a header.
sourcepub fn disable_value_trimming(&self) -> Option<bool>
pub fn 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) -> Option<bool>
pub fn allow_single_column(&self) -> Option<bool>
Enables the processing of files that contain only one column.
sourcepub fn custom_datatype_configured(&self) -> Option<bool>
pub fn custom_datatype_configured(&self) -> Option<bool>
Enables the custom datatype to be configured.
sourcepub fn custom_datatypes(&self) -> Option<&[String]>
pub fn custom_datatypes(&self) -> Option<&[String]>
A list of custom datatypes including "BINARY", "BOOLEAN", "DATE", "DECIMAL", "DOUBLE", "FLOAT", "INT", "LONG", "SHORT", "STRING", "TIMESTAMP".
source§impl CsvClassifier
impl CsvClassifier
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CsvClassifier.
Trait Implementations§
source§impl Clone for CsvClassifier
impl Clone for CsvClassifier
source§fn clone(&self) -> CsvClassifier
fn clone(&self) -> CsvClassifier
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CsvClassifier
impl Debug for CsvClassifier
source§impl PartialEq<CsvClassifier> for CsvClassifier
impl PartialEq<CsvClassifier> for CsvClassifier
source§fn eq(&self, other: &CsvClassifier) -> bool
fn eq(&self, other: &CsvClassifier) -> bool
self and other values to be equal, and is used
by ==.