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
impl StructuralPartialEq for TaskStatisticsForAuditCheck
Auto Trait Implementations§
impl Freeze for TaskStatisticsForAuditCheck
impl RefUnwindSafe for TaskStatisticsForAuditCheck
impl Send for TaskStatisticsForAuditCheck
impl Sync for TaskStatisticsForAuditCheck
impl Unpin for TaskStatisticsForAuditCheck
impl UnwindSafe for TaskStatisticsForAuditCheck
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more