Struct aws_sdk_iot::types::ViolationEvent
source · #[non_exhaustive]pub struct ViolationEvent { /* private fields */ }
Expand description
Information about a Device Defender security profile behavior violation.
Implementations§
source§impl ViolationEvent
impl ViolationEvent
sourcepub fn violation_id(&self) -> Option<&str>
pub fn violation_id(&self) -> Option<&str>
The ID of the violation event.
sourcepub fn thing_name(&self) -> Option<&str>
pub fn thing_name(&self) -> Option<&str>
The name of the thing responsible for the violation event.
sourcepub fn security_profile_name(&self) -> Option<&str>
pub fn security_profile_name(&self) -> Option<&str>
The name of the security profile whose behavior was violated.
sourcepub fn metric_value(&self) -> Option<&MetricValue>
pub fn metric_value(&self) -> Option<&MetricValue>
The value of the metric (the measurement).
sourcepub fn violation_event_additional_info(
&self
) -> Option<&ViolationEventAdditionalInfo>
pub fn violation_event_additional_info( &self ) -> Option<&ViolationEventAdditionalInfo>
The details of a violation event.
sourcepub fn violation_event_type(&self) -> Option<&ViolationEventType>
pub fn violation_event_type(&self) -> Option<&ViolationEventType>
The type of violation event.
sourcepub fn verification_state(&self) -> Option<&VerificationState>
pub fn verification_state(&self) -> Option<&VerificationState>
The verification state of the violation (detect alarm).
sourcepub fn verification_state_description(&self) -> Option<&str>
pub fn verification_state_description(&self) -> Option<&str>
The description of the verification state of the violation.
sourcepub fn violation_event_time(&self) -> Option<&DateTime>
pub fn violation_event_time(&self) -> Option<&DateTime>
The time the violation event occurred.
source§impl ViolationEvent
impl ViolationEvent
sourcepub fn builder() -> ViolationEventBuilder
pub fn builder() -> ViolationEventBuilder
Creates a new builder-style object to manufacture ViolationEvent
.
Trait Implementations§
source§impl Clone for ViolationEvent
impl Clone for ViolationEvent
source§fn clone(&self) -> ViolationEvent
fn clone(&self) -> ViolationEvent
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ViolationEvent
impl Debug for ViolationEvent
source§impl PartialEq<ViolationEvent> for ViolationEvent
impl PartialEq<ViolationEvent> for ViolationEvent
source§fn eq(&self, other: &ViolationEvent) -> bool
fn eq(&self, other: &ViolationEvent) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.