[][src]Struct rusoto_frauddetector::ModelInputConfiguration

pub struct ModelInputConfiguration {
    pub csv_input_template: Option<String>,
    pub format: Option<String>,
    pub is_opaque: bool,
    pub json_input_template: Option<String>,
}

The model input configuration.

Fields

csv_input_template: Option<String>

Template for constructing the CSV input-data sent to SageMaker. At event-evaluation, the placeholders for variable-names in the template will be replaced with the variable values before being sent to SageMaker.

format: Option<String>

The format of the model input configuration. The format differs depending on if it is passed through to SageMaker or constructed by Amazon Fraud Detector.

is_opaque: bool

For an opaque-model, the input to the model will be a ByteBuffer blob provided in the getPrediction request, and will be passed to SageMaker as-is. For non-opaque models, the input will be constructed by Amazon Fraud Detector based on the model-configuration.

json_input_template: Option<String>

Template for constructing the JSON input-data sent to SageMaker. At event-evaluation, the placeholders for variable names in the template will be replaced with the variable values before being sent to SageMaker.

Trait Implementations

impl Clone for ModelInputConfiguration[src]

impl Debug for ModelInputConfiguration[src]

impl Default for ModelInputConfiguration[src]

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

impl PartialEq<ModelInputConfiguration> for ModelInputConfiguration[src]

impl Serialize for ModelInputConfiguration[src]

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