[][src]Struct rusoto_appconfig::DeploymentSummary

pub struct DeploymentSummary {
    pub completed_at: Option<f64>,
    pub configuration_name: Option<String>,
    pub configuration_version: Option<String>,
    pub deployment_duration_in_minutes: Option<i64>,
    pub deployment_number: Option<i64>,
    pub final_bake_time_in_minutes: Option<i64>,
    pub growth_factor: Option<f32>,
    pub growth_type: Option<String>,
    pub percentage_complete: Option<f32>,
    pub started_at: Option<f64>,
    pub state: Option<String>,
}

Information about the deployment.

Fields

completed_at: Option<f64>

Time the deployment completed.

configuration_name: Option<String>

The name of the configuration.

configuration_version: Option<String>

The version of the configuration.

deployment_duration_in_minutes: Option<i64>

Total amount of time the deployment lasted.

deployment_number: Option<i64>

The sequence number of the deployment.

final_bake_time_in_minutes: Option<i64>

The amount of time AppConfig monitors for alarms before considering the deployment to be complete and no longer eligible for automatic roll back.

growth_factor: Option<f32>

The percentage of targets to receive a deployed configuration during each interval.

growth_type: Option<String>

The algorithm used to define how percentage grows over time.

percentage_complete: Option<f32>

The percentage of targets for which the deployment is available.

started_at: Option<f64>

Time the deployment started.

state: Option<String>

The state of the deployment.

Trait Implementations

impl Clone for DeploymentSummary[src]

impl Debug for DeploymentSummary[src]

impl Default for DeploymentSummary[src]

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

impl PartialEq<DeploymentSummary> for DeploymentSummary[src]

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