[][src]Struct rusoto_glue::Classifier

pub struct Classifier {
    pub csv_classifier: Option<CsvClassifier>,
    pub grok_classifier: Option<GrokClassifier>,
    pub json_classifier: Option<JsonClassifier>,
    pub xml_classifier: Option<XMLClassifier>,
}

Classifiers are triggered during a crawl task. A classifier checks whether a given file is in a format it can handle. If it is, the classifier creates a schema in the form of a StructType object that matches that data format.

You can use the standard classifiers that AWS Glue provides, or you can write your own classifiers to best categorize your data sources and specify the appropriate schemas to use for them. A classifier can be a grok classifier, an XML classifier, a JSON classifier, or a custom CSV classifier, as specified in one of the fields in the Classifier object.

Fields

csv_classifier: Option<CsvClassifier>

A classifier for comma-separated values (CSV).

grok_classifier: Option<GrokClassifier>

A classifier that uses grok.

json_classifier: Option<JsonClassifier>

A classifier for JSON content.

xml_classifier: Option<XMLClassifier>

A classifier for XML content.

Trait Implementations

impl Clone for Classifier[src]

impl Debug for Classifier[src]

impl Default for Classifier[src]

impl<'de> Deserialize<'de> for Classifier[src]

impl PartialEq<Classifier> for Classifier[src]

impl StructuralPartialEq for Classifier[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.