[][src]Struct rusoto_frauddetector::CreateDetectorVersionRequest

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

Fields

description: Option<String>

The description of the detector version.

detector_id: String

The ID of the detector under which you want to create a new version.

external_model_endpoints: Option<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 for the rules included in the detector version.

You can define and edit the rule mode at the detector version level, when it is in draft status.

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.

The default behavior is FIRST_MATCHED.

rules: Vec<Rule>

The rules to include in the detector version.

Trait Implementations

impl Clone for CreateDetectorVersionRequest[src]

impl Debug for CreateDetectorVersionRequest[src]

impl Default for CreateDetectorVersionRequest[src]

impl PartialEq<CreateDetectorVersionRequest> for CreateDetectorVersionRequest[src]

impl Serialize for CreateDetectorVersionRequest[src]

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