[][src]Struct rusoto_iot::TaskStatisticsForAuditCheck

pub struct TaskStatisticsForAuditCheck {
    pub canceled_findings_count: Option<i64>,
    pub failed_findings_count: Option<i64>,
    pub skipped_findings_count: Option<i64>,
    pub succeeded_findings_count: Option<i64>,
    pub total_findings_count: Option<i64>,
}

Provides summary counts of how many tasks for findings are in a particular state. This information is included in the response from DescribeAuditMitigationActionsTask.

Fields

canceled_findings_count: Option<i64>

The number of findings to which the mitigation action task was canceled when applied.

failed_findings_count: Option<i64>

The number of findings for which at least one of the actions failed when applied.

skipped_findings_count: Option<i64>

The number of findings skipped because of filter conditions provided in the parameters to the command.

succeeded_findings_count: Option<i64>

The number of findings for which all mitigation actions succeeded when applied.

total_findings_count: Option<i64>

The total number of findings to which a task is being applied.

Trait Implementations

impl Clone for TaskStatisticsForAuditCheck[src]

impl Default for TaskStatisticsForAuditCheck[src]

impl PartialEq<TaskStatisticsForAuditCheck> for TaskStatisticsForAuditCheck[src]

impl Debug for TaskStatisticsForAuditCheck[src]

impl StructuralPartialEq for TaskStatisticsForAuditCheck[src]

impl<'de> Deserialize<'de> for TaskStatisticsForAuditCheck[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self