[][src]Struct rusoto_glue::CreateJsonClassifierRequest

pub struct CreateJsonClassifierRequest {
    pub json_path: String,
    pub name: String,
}

Specifies a JSON classifier for CreateClassifier to create.

Fields

json_path: String

A JsonPath string defining the JSON data for the classifier to classify. AWS Glue supports a subset of JsonPath, as described in Writing JsonPath Custom Classifiers.

name: String

The name of the classifier.

Trait Implementations

impl Clone for CreateJsonClassifierRequest[src]

impl Debug for CreateJsonClassifierRequest[src]

impl Default for CreateJsonClassifierRequest[src]

impl PartialEq<CreateJsonClassifierRequest> for CreateJsonClassifierRequest[src]

impl Serialize for CreateJsonClassifierRequest[src]

impl StructuralPartialEq for CreateJsonClassifierRequest[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.