Struct aws_sdk_iot::model::AuditCheckDetails
source · #[non_exhaustive]pub struct AuditCheckDetails { /* private fields */ }
Expand description
Information about the audit check.
Implementations§
source§impl AuditCheckDetails
impl AuditCheckDetails
sourcepub fn check_run_status(&self) -> Option<&AuditCheckRunStatus>
pub fn check_run_status(&self) -> Option<&AuditCheckRunStatus>
The completion status of this check. One of "IN_PROGRESS", "WAITING_FOR_DATA_COLLECTION", "CANCELED", "COMPLETED_COMPLIANT", "COMPLETED_NON_COMPLIANT", or "FAILED".
sourcepub fn check_compliant(&self) -> Option<bool>
pub fn check_compliant(&self) -> Option<bool>
True if the check is complete and found all resources compliant.
sourcepub fn total_resources_count(&self) -> Option<i64>
pub fn total_resources_count(&self) -> Option<i64>
The number of resources on which the check was performed.
sourcepub fn non_compliant_resources_count(&self) -> Option<i64>
pub fn non_compliant_resources_count(&self) -> Option<i64>
The number of resources that were found noncompliant during the check.
sourcepub fn suppressed_non_compliant_resources_count(&self) -> Option<i64>
pub fn suppressed_non_compliant_resources_count(&self) -> Option<i64>
Describes how many of the non-compliant resources created during the evaluation of an audit check were marked as suppressed.
sourcepub fn error_code(&self) -> Option<&str>
pub fn error_code(&self) -> Option<&str>
The code of any error encountered when this check is performed during this audit. One of "INSUFFICIENT_PERMISSIONS" or "AUDIT_CHECK_DISABLED".
source§impl AuditCheckDetails
impl AuditCheckDetails
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AuditCheckDetails
.
Trait Implementations§
source§impl Clone for AuditCheckDetails
impl Clone for AuditCheckDetails
source§fn clone(&self) -> AuditCheckDetails
fn clone(&self) -> AuditCheckDetails
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 AuditCheckDetails
impl Debug for AuditCheckDetails
source§impl PartialEq<AuditCheckDetails> for AuditCheckDetails
impl PartialEq<AuditCheckDetails> for AuditCheckDetails
source§fn eq(&self, other: &AuditCheckDetails) -> bool
fn eq(&self, other: &AuditCheckDetails) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.