[][src]Struct rusoto_frauddetector::GetDetectorVersionResult

pub struct GetDetectorVersionResult {
    pub created_time: Option<String>,
    pub description: Option<String>,
    pub detector_id: Option<String>,
    pub detector_version_id: Option<String>,
    pub external_model_endpoints: Option<Vec<String>>,
    pub last_updated_time: Option<String>,
    pub model_versions: Option<Vec<ModelVersion>>,
    pub rule_execution_mode: Option<String>,
    pub rules: Option<Vec<Rule>>,
    pub status: Option<String>,
}

Fields

created_time: Option<String>

The timestamp when the detector version was created.

description: Option<String>

The detector version description.

detector_id: Option<String>

The detector ID.

detector_version_id: Option<String>

The detector version ID.

external_model_endpoints: Option<Vec<String>>

The Amazon SageMaker model endpoints included in the detector version.

last_updated_time: Option<String>

The timestamp when the detector version was last updated.

model_versions: Option<Vec<ModelVersion>>

The model versions included in the detector version.

rule_execution_mode: Option<String>

The execution mode of the rule in the dectector

FIRST_MATCHED indicates that Amazon Fraud Detector evaluates rules sequentially, first to last, stopping at the first matched rule. Amazon Fraud dectector then provides the outcomes for that single rule.

ALL_MATCHED indicates that Amazon Fraud Detector evaluates all rules and returns the outcomes for all matched rules. You can define and edit the rule mode at the detector version level, when it is in draft status.

rules: Option<Vec<Rule>>

The rules included in the detector version.

status: Option<String>

The status of the detector version.

Trait Implementations

impl Clone for GetDetectorVersionResult[src]

impl Debug for GetDetectorVersionResult[src]

impl Default for GetDetectorVersionResult[src]

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

impl PartialEq<GetDetectorVersionResult> for GetDetectorVersionResult[src]

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