[][src]Struct rusoto_frauddetector::ModelOutputConfiguration

pub struct ModelOutputConfiguration {
    pub csv_index_to_variable_map: Option<HashMap<String, String>>,
    pub format: String,
    pub json_key_to_variable_map: Option<HashMap<String, String>>,
}

Provides the model output configuration.

Fields

csv_index_to_variable_map: Option<HashMap<String, String>>

A map of CSV index values in the SageMaker response to the Amazon Fraud Detector variables.

format: String

The format of the model output configuration.

json_key_to_variable_map: Option<HashMap<String, String>>

A map of JSON keys in response from SageMaker to the Amazon Fraud Detector variables.

Trait Implementations

impl Clone for ModelOutputConfiguration[src]

impl Debug for ModelOutputConfiguration[src]

impl Default for ModelOutputConfiguration[src]

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

impl PartialEq<ModelOutputConfiguration> for ModelOutputConfiguration[src]

impl Serialize for ModelOutputConfiguration[src]

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