[][src]Struct rusoto_frauddetector::GetPredictionRequest

pub struct GetPredictionRequest {
    pub detector_id: String,
    pub detector_version_id: Option<String>,
    pub event_attributes: Option<HashMap<String, String>>,
    pub event_id: String,
    pub external_model_endpoint_data_blobs: Option<HashMap<String, ModelEndpointDataBlob>>,
}

Fields

detector_id: String

The detector ID.

detector_version_id: Option<String>

The detector version ID.

event_attributes: Option<HashMap<String, String>>

Names of variables you defined in Amazon Fraud Detector to represent event data elements and their corresponding values for the event you are sending for evaluation.

event_id: String

The unique ID used to identify the event.

external_model_endpoint_data_blobs: Option<HashMap<String, ModelEndpointDataBlob>>

The Amazon SageMaker model endpoint input data blobs.

Trait Implementations

impl Clone for GetPredictionRequest[src]

impl Debug for GetPredictionRequest[src]

impl Default for GetPredictionRequest[src]

impl PartialEq<GetPredictionRequest> for GetPredictionRequest[src]

impl Serialize for GetPredictionRequest[src]

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