Struct aws_sdk_iot::model::TaskStatistics
source · #[non_exhaustive]pub struct TaskStatistics { /* private fields */ }
Expand description
Statistics for the checks performed during the audit.
Implementations§
source§impl TaskStatistics
impl TaskStatistics
sourcepub fn total_checks(&self) -> Option<i32>
pub fn total_checks(&self) -> Option<i32>
The number of checks in this audit.
sourcepub fn in_progress_checks(&self) -> Option<i32>
pub fn in_progress_checks(&self) -> Option<i32>
The number of checks in progress.
sourcepub fn waiting_for_data_collection_checks(&self) -> Option<i32>
pub fn waiting_for_data_collection_checks(&self) -> Option<i32>
The number of checks waiting for data collection.
sourcepub fn compliant_checks(&self) -> Option<i32>
pub fn compliant_checks(&self) -> Option<i32>
The number of checks that found compliant resources.
sourcepub fn non_compliant_checks(&self) -> Option<i32>
pub fn non_compliant_checks(&self) -> Option<i32>
The number of checks that found noncompliant resources.
sourcepub fn failed_checks(&self) -> Option<i32>
pub fn failed_checks(&self) -> Option<i32>
The number of checks.
sourcepub fn canceled_checks(&self) -> Option<i32>
pub fn canceled_checks(&self) -> Option<i32>
The number of checks that did not run because the audit was canceled.
source§impl TaskStatistics
impl TaskStatistics
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TaskStatistics
.
Trait Implementations§
source§impl Clone for TaskStatistics
impl Clone for TaskStatistics
source§fn clone(&self) -> TaskStatistics
fn clone(&self) -> TaskStatistics
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 TaskStatistics
impl Debug for TaskStatistics
source§impl PartialEq<TaskStatistics> for TaskStatistics
impl PartialEq<TaskStatistics> for TaskStatistics
source§fn eq(&self, other: &TaskStatistics) -> bool
fn eq(&self, other: &TaskStatistics) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.