[][src]Struct rusoto_iotevents::DetectorModelConfiguration

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

Information about how the detector model is configured.

Fields

creation_time: Option<f64>

The time the detector model was created.

detector_model_arn: Option<String>

The ARN of the detector model.

detector_model_description: Option<String>

A brief description of the detector model.

detector_model_name: Option<String>

The name of the detector model.

detector_model_version: Option<String>

The version of the detector model.

evaluation_method: Option<String>

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

key: Option<String>

The input attribute key used to identify a device or system in order to create a detector (an instance of the detector model) and then to route each input received to the appropriate detector (instance). This parameter uses a JSON-path expression to specify the attribute-value pair in the message payload of each input that is used to identify the device associated with the input.

last_update_time: Option<f64>

The time the detector model was last updated.

role_arn: Option<String>

The ARN of the role that grants permission to AWS IoT Events to perform its operations.

status: Option<String>

The status of the detector model.

Trait Implementations

impl Clone for DetectorModelConfiguration[src]

impl Debug for DetectorModelConfiguration[src]

impl Default for DetectorModelConfiguration[src]

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

impl PartialEq<DetectorModelConfiguration> for DetectorModelConfiguration[src]

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