[][src]Struct rusoto_iot::ViolationEvent

pub struct ViolationEvent {
    pub behavior: Option<Behavior>,
    pub metric_value: Option<MetricValue>,
    pub security_profile_name: Option<String>,
    pub thing_name: Option<String>,
    pub violation_event_time: Option<f64>,
    pub violation_event_type: Option<String>,
    pub violation_id: Option<String>,
}

Information about a Device Defender security profile behavior violation.

Fields

behavior: Option<Behavior>

The behavior which was violated.

metric_value: Option<MetricValue>

The value of the metric (the measurement).

security_profile_name: Option<String>

The name of the security profile whose behavior was violated.

thing_name: Option<String>

The name of the thing responsible for the violation event.

violation_event_time: Option<f64>

The time the violation event occurred.

violation_event_type: Option<String>

The type of violation event.

violation_id: Option<String>

The ID of the violation event.

Trait Implementations

impl PartialEq<ViolationEvent> for ViolationEvent[src]

impl Default for ViolationEvent[src]

impl Clone for ViolationEvent[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ViolationEvent[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self