Struct aws_sdk_iot::types::TaskStatisticsForAuditCheck
source · #[non_exhaustive]pub struct TaskStatisticsForAuditCheck {
pub total_findings_count: Option<i64>,
pub failed_findings_count: Option<i64>,
pub succeeded_findings_count: Option<i64>,
pub skipped_findings_count: Option<i64>,
pub canceled_findings_count: Option<i64>,
}
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.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.total_findings_count: Option<i64>
The total number of findings to which a task is being applied.
failed_findings_count: Option<i64>
The number of findings for which at least one of the actions failed when applied.
succeeded_findings_count: Option<i64>
The number of findings for which all mitigation actions succeeded when applied.
skipped_findings_count: Option<i64>
The number of findings skipped because of filter conditions provided in the parameters to the command.
canceled_findings_count: Option<i64>
The number of findings to which the mitigation action task was canceled when applied.
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() -> TaskStatisticsForAuditCheckBuilder
pub fn builder() -> TaskStatisticsForAuditCheckBuilder
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TaskStatisticsForAuditCheck
impl Debug for TaskStatisticsForAuditCheck
source§impl PartialEq for TaskStatisticsForAuditCheck
impl PartialEq for TaskStatisticsForAuditCheck
source§fn eq(&self, other: &TaskStatisticsForAuditCheck) -> bool
fn eq(&self, other: &TaskStatisticsForAuditCheck) -> bool
self
and other
values to be equal, and is used
by ==
.