[][src]Struct rusoto_iotevents::DetectorModelVersionSummary

pub struct DetectorModelVersionSummary {
    pub creation_time: Option<f64>,
    pub detector_model_arn: Option<String>,
    pub detector_model_name: Option<String>,
    pub detector_model_version: Option<String>,
    pub evaluation_method: Option<String>,
    pub last_update_time: Option<f64>,
    pub role_arn: Option<String>,
    pub status: Option<String>,
}

Information about the detector model version.

Fields

creation_time: Option<f64>

The time the detector model version was created.

detector_model_arn: Option<String>

The ARN of the detector model version.

detector_model_name: Option<String>

The name of the detector model.

detector_model_version: Option<String>

The ID of the detector model version.

evaluation_method: Option<String>

Information about the order in which events are evaluated and how actions are executed.

last_update_time: Option<f64>

The last time the detector model version was updated.

role_arn: Option<String>

The ARN of the role that grants the detector model permission to perform its tasks.

status: Option<String>

The status of the detector model version.

Trait Implementations

impl Clone for DetectorModelVersionSummary[src]

impl Debug for DetectorModelVersionSummary[src]

impl Default for DetectorModelVersionSummary[src]

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

impl PartialEq<DetectorModelVersionSummary> for DetectorModelVersionSummary[src]

impl StructuralPartialEq for DetectorModelVersionSummary[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: Deserialize<'de>, 
[src]

impl<T> From<T> 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.