Struct aws_sdk_iot::types::ActiveViolation
source · #[non_exhaustive]pub struct ActiveViolation { /* private fields */ }
Expand description
Information about an active Device Defender security profile behavior violation.
Implementations§
source§impl ActiveViolation
impl ActiveViolation
sourcepub fn violation_id(&self) -> Option<&str>
pub fn violation_id(&self) -> Option<&str>
The ID of the active violation.
sourcepub fn thing_name(&self) -> Option<&str>
pub fn thing_name(&self) -> Option<&str>
The name of the thing responsible for the active violation.
sourcepub fn security_profile_name(&self) -> Option<&str>
pub fn security_profile_name(&self) -> Option<&str>
The security profile with the behavior is in violation.
sourcepub fn last_violation_value(&self) -> Option<&MetricValue>
pub fn last_violation_value(&self) -> Option<&MetricValue>
The value of the metric (the measurement) that caused the most recent violation.
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 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 last_violation_time(&self) -> Option<&DateTime>
pub fn last_violation_time(&self) -> Option<&DateTime>
The time the most recent violation occurred.
sourcepub fn violation_start_time(&self) -> Option<&DateTime>
pub fn violation_start_time(&self) -> Option<&DateTime>
The time the violation started.
source§impl ActiveViolation
impl ActiveViolation
sourcepub fn builder() -> ActiveViolationBuilder
pub fn builder() -> ActiveViolationBuilder
Creates a new builder-style object to manufacture ActiveViolation
.
Trait Implementations§
source§impl Clone for ActiveViolation
impl Clone for ActiveViolation
source§fn clone(&self) -> ActiveViolation
fn clone(&self) -> ActiveViolation
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 ActiveViolation
impl Debug for ActiveViolation
source§impl PartialEq<ActiveViolation> for ActiveViolation
impl PartialEq<ActiveViolation> for ActiveViolation
source§fn eq(&self, other: &ActiveViolation) -> bool
fn eq(&self, other: &ActiveViolation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.