Struct aws_sdk_iot::model::TaskStatisticsForAuditCheck
source · #[non_exhaustive]pub struct TaskStatisticsForAuditCheck { /* private fields */ }
Expand description
Provides summary counts of how many tasks for findings are in a particular state. This information is included in the response from DescribeAuditMitigationActionsTask.
Implementations§
source§impl TaskStatisticsForAuditCheck
impl TaskStatisticsForAuditCheck
sourcepub fn total_findings_count(&self) -> Option<i64>
pub fn total_findings_count(&self) -> Option<i64>
The total number of findings to which a task is being applied.
sourcepub fn failed_findings_count(&self) -> Option<i64>
pub fn failed_findings_count(&self) -> Option<i64>
The number of findings for which at least one of the actions failed when applied.
sourcepub fn succeeded_findings_count(&self) -> Option<i64>
pub fn succeeded_findings_count(&self) -> Option<i64>
The number of findings for which all mitigation actions succeeded when applied.
sourcepub fn skipped_findings_count(&self) -> Option<i64>
pub fn skipped_findings_count(&self) -> Option<i64>
The number of findings skipped because of filter conditions provided in the parameters to the command.
sourcepub fn canceled_findings_count(&self) -> Option<i64>
pub fn canceled_findings_count(&self) -> Option<i64>
The number of findings to which the mitigation action task was canceled when applied.
source§impl TaskStatisticsForAuditCheck
impl TaskStatisticsForAuditCheck
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TaskStatisticsForAuditCheck
.
Trait Implementations§
source§impl Clone for TaskStatisticsForAuditCheck
impl Clone for TaskStatisticsForAuditCheck
source§fn clone(&self) -> TaskStatisticsForAuditCheck
fn clone(&self) -> TaskStatisticsForAuditCheck
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 TaskStatisticsForAuditCheck
impl Debug for TaskStatisticsForAuditCheck
source§impl PartialEq<TaskStatisticsForAuditCheck> for TaskStatisticsForAuditCheck
impl PartialEq<TaskStatisticsForAuditCheck> for TaskStatisticsForAuditCheck
source§fn eq(&self, other: &TaskStatisticsForAuditCheck) -> bool
fn eq(&self, other: &TaskStatisticsForAuditCheck) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.