[][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 Clone for CreateCsvClassifierRequest[src]

impl Debug for CreateCsvClassifierRequest[src]

impl Default for CreateCsvClassifierRequest[src]

impl PartialEq<CreateCsvClassifierRequest> for CreateCsvClassifierRequest[src]

impl Serialize for CreateCsvClassifierRequest[src]

impl StructuralPartialEq for CreateCsvClassifierRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.