[][src]Struct rusoto_ssm::ProgressCounters

pub struct ProgressCounters {
    pub cancelled_steps: Option<i64>,
    pub failed_steps: Option<i64>,
    pub success_steps: Option<i64>,
    pub timed_out_steps: Option<i64>,
    pub total_steps: Option<i64>,
}

An aggregate of step execution statuses displayed in the AWS Console for a multi-Region and multi-account Automation execution.

Fields

cancelled_steps: Option<i64>

The total number of steps that the system cancelled in all specified AWS Regions and accounts for the current Automation execution.

failed_steps: Option<i64>

The total number of steps that failed to run in all specified AWS Regions and accounts for the current Automation execution.

success_steps: Option<i64>

The total number of steps that successfully completed in all specified AWS Regions and accounts for the current Automation execution.

timed_out_steps: Option<i64>

The total number of steps that timed out in all specified AWS Regions and accounts for the current Automation execution.

total_steps: Option<i64>

The total number of steps run in all specified AWS Regions and accounts for the current Automation execution.

Trait Implementations

impl Clone for ProgressCounters[src]

impl Debug for ProgressCounters[src]

impl Default for ProgressCounters[src]

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

impl PartialEq<ProgressCounters> for ProgressCounters[src]

impl StructuralPartialEq for ProgressCounters[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.