[][src]Struct rusoto_glue::CreateCsvClassifierRequest

pub struct CreateCsvClassifierRequest {
    pub allow_single_column: Option<bool>,
    pub contains_header: Option<String>,
    pub delimiter: Option<String>,
    pub disable_value_trimming: Option<bool>,
    pub header: Option<Vec<String>>,
    pub name: String,
    pub quote_symbol: Option<String>,
}

Specifies a custom CSV classifier for CreateClassifier to create.

Fields

allow_single_column: Option<bool>

Enables the processing of files that contain only one column.

contains_header: Option<String>

Indicates whether the CSV file contains a header.

delimiter: Option<String>

A custom symbol to denote what separates each column entry in the row.

disable_value_trimming: Option<bool>

Specifies not to trim values before identifying the type of column values. The default value is true.

header: Option<Vec<String>>

A list of strings representing column names.

name: String

The name of the classifier.

quote_symbol: Option<String>

A custom symbol to denote what combines content into a single column value. Must be different from the column delimiter.

Trait Implementations

impl PartialEq<CreateCsvClassifierRequest> for CreateCsvClassifierRequest[src]

impl Default for CreateCsvClassifierRequest[src]

impl Clone for CreateCsvClassifierRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CreateCsvClassifierRequest[src]

impl Serialize for CreateCsvClassifierRequest[src]

Auto Trait Implementations

impl Send for CreateCsvClassifierRequest

impl Sync for CreateCsvClassifierRequest

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self