[][src]Struct rusoto_frauddetector::RuleDetail

pub struct RuleDetail {
    pub created_time: Option<String>,
    pub description: Option<String>,
    pub detector_id: Option<String>,
    pub expression: Option<String>,
    pub language: Option<String>,
    pub last_updated_time: Option<String>,
    pub outcomes: Option<Vec<String>>,
    pub rule_id: Option<String>,
    pub rule_version: Option<String>,
}

The details of the rule.

Fields

created_time: Option<String>

The timestamp of when the rule was created.

description: Option<String>

The rule description.

detector_id: Option<String>

The detector for which the rule is associated.

expression: Option<String>

The rule expression.

language: Option<String>

The rule language.

last_updated_time: Option<String>

Timestamp of the last time the rule was updated.

outcomes: Option<Vec<String>>

The rule outcomes.

rule_id: Option<String>

The rule ID.

rule_version: Option<String>

The rule version.

Trait Implementations

impl Clone for RuleDetail[src]

impl Debug for RuleDetail[src]

impl Default for RuleDetail[src]

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

impl PartialEq<RuleDetail> for RuleDetail[src]

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