pub struct AuditCheckDetails {
pub check_compliant: Option<bool>,
pub check_run_status: Option<String>,
pub error_code: Option<String>,
pub message: Option<String>,
pub non_compliant_resources_count: Option<i64>,
pub total_resources_count: Option<i64>,
}Expand description
Information about the audit check.
Fields§
§check_compliant: Option<bool>True if the check is complete and found all resources compliant.
check_run_status: Option<String>The completion status of this check. One of "IN_PROGRESS", "WAITING_FOR_DATA_COLLECTION", "CANCELED", "COMPLETED_COMPLIANT", "COMPLETED_NON_COMPLIANT", or "FAILED".
error_code: Option<String>The code of any error encountered when this check is performed during this audit. One of "INSUFFICIENT_PERMISSIONS" or "AUDIT_CHECK_DISABLED".
message: Option<String>The message associated with any error encountered when this check is performed during this audit.
non_compliant_resources_count: Option<i64>The number of resources that were found noncompliant during the check.
total_resources_count: Option<i64>The number of resources on which the check was performed.
Trait Implementations§
Source§impl Clone for AuditCheckDetails
impl Clone for AuditCheckDetails
Source§fn clone(&self) -> AuditCheckDetails
fn clone(&self) -> AuditCheckDetails
Returns a duplicate 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 Default for AuditCheckDetails
impl Default for AuditCheckDetails
Source§fn default() -> AuditCheckDetails
fn default() -> AuditCheckDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuditCheckDetails
impl<'de> Deserialize<'de> for AuditCheckDetails
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AuditCheckDetails
impl PartialEq for AuditCheckDetails
impl StructuralPartialEq for AuditCheckDetails
Auto Trait Implementations§
impl Freeze for AuditCheckDetails
impl RefUnwindSafe for AuditCheckDetails
impl Send for AuditCheckDetails
impl Sync for AuditCheckDetails
impl Unpin for AuditCheckDetails
impl UnwindSafe for AuditCheckDetails
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more