[][src]Struct rusoto_frauddetector::Model

pub struct Model {
    pub created_time: Option<String>,
    pub description: Option<String>,
    pub label_schema: Option<LabelSchema>,
    pub last_updated_time: Option<String>,
    pub model_id: Option<String>,
    pub model_type: Option<String>,
    pub model_variables: Option<Vec<ModelVariable>>,
    pub training_data_source: Option<TrainingDataSource>,
}

The model.

Fields

created_time: Option<String>

Timestamp of when the model was created.

description: Option<String>

The model description.

label_schema: Option<LabelSchema>

The model label schema.

last_updated_time: Option<String>

Timestamp of last time the model was updated.

model_id: Option<String>

The model ID.

model_type: Option<String>

The model type.

model_variables: Option<Vec<ModelVariable>>

The model input variables.

training_data_source: Option<TrainingDataSource>

The model training data source in Amazon S3.

Trait Implementations

impl Clone for Model[src]

impl Debug for Model[src]

impl Default for Model[src]

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

impl PartialEq<Model> for Model[src]

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