[][src]Struct rusoto_frauddetector::UpdateDetectorVersionRequest

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

Fields

description: Option<String>

The detector version description.

detector_id: String

The parent detector ID for the detector version you want to update.

detector_version_id: String

The detector version ID.

external_model_endpoints: Vec<String>

The Amazon SageMaker model endpoints to include in the detector version.

model_versions: Option<Vec<ModelVersion>>

The model versions to include in the detector version.

rule_execution_mode: Option<String>

The rule execution mode to add to the detector.

If you specify FIRST_MATCHED, 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.

If you specifiy ALL_MATCHED, 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.

The default behavior is FIRST_MATCHED.

rules: Vec<Rule>

The rules to include in the detector version.

Trait Implementations

impl Clone for UpdateDetectorVersionRequest[src]

impl Debug for UpdateDetectorVersionRequest[src]

impl Default for UpdateDetectorVersionRequest[src]

impl PartialEq<UpdateDetectorVersionRequest> for UpdateDetectorVersionRequest[src]

impl Serialize for UpdateDetectorVersionRequest[src]

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