[][src]Struct rusoto_greengrass::BulkDeploymentMetrics

pub struct BulkDeploymentMetrics {
    pub invalid_input_records: Option<i64>,
    pub records_processed: Option<i64>,
    pub retry_attempts: Option<i64>,
}

Relevant metrics on input records processed during bulk deployment.

Fields

invalid_input_records: Option<i64>

The total number of records that returned a non-retryable error. For example, this can occur if a group record from the input file uses an invalid format or specifies a nonexistent group version, or if the execution role doesn't grant permission to deploy a group or group version.

records_processed: Option<i64>

The total number of group records from the input file that have been processed so far, or attempted.

retry_attempts: Option<i64>

The total number of deployment attempts that returned a retryable error. For example, a retry is triggered if the attempt to deploy a group returns a throttling error. ''StartBulkDeployment'' retries a group deployment up to five times.

Trait Implementations

impl Clone for BulkDeploymentMetrics[src]

impl Debug for BulkDeploymentMetrics[src]

impl Default for BulkDeploymentMetrics[src]

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

impl PartialEq<BulkDeploymentMetrics> for BulkDeploymentMetrics[src]

impl StructuralPartialEq for BulkDeploymentMetrics[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, 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.