[][src]Struct rusoto_appconfig::Deployment

pub struct Deployment {
    pub application_id: Option<String>,
    pub completed_at: Option<f64>,
    pub configuration_location_uri: Option<String>,
    pub configuration_name: Option<String>,
    pub configuration_profile_id: Option<String>,
    pub configuration_version: Option<String>,
    pub deployment_duration_in_minutes: Option<i64>,
    pub deployment_number: Option<i64>,
    pub deployment_strategy_id: Option<String>,
    pub description: Option<String>,
    pub environment_id: Option<String>,
    pub event_log: Option<Vec<DeploymentEvent>>,
    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>,
}

Fields

application_id: Option<String>

The ID of the application that was deployed.

completed_at: Option<f64>

The time the deployment completed.

configuration_location_uri: Option<String>

Information about the source location of the configuration.

configuration_name: Option<String>

The name of the configuration.

configuration_profile_id: Option<String>

The ID of the configuration profile that was deployed.

configuration_version: Option<String>

The configuration version that was deployed.

deployment_duration_in_minutes: Option<i64>

Total amount of time the deployment lasted.

deployment_number: Option<i64>

The sequence number of the deployment.

deployment_strategy_id: Option<String>

The ID of the deployment strategy that was deployed.

description: Option<String>

The description of the deployment.

environment_id: Option<String>

The ID of the environment that was deployed.

event_log: Option<Vec<DeploymentEvent>>

A list containing all events related to a deployment. The most recent events are displayed first.

final_bake_time_in_minutes: Option<i64>

The amount of time AppConfig monitored 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 grew over time.

percentage_complete: Option<f32>

The percentage of targets for which the deployment is available.

started_at: Option<f64>

The time the deployment started.

state: Option<String>

The state of the deployment.

Trait Implementations

impl Clone for Deployment[src]

impl Debug for Deployment[src]

impl Default for Deployment[src]

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

impl PartialEq<Deployment> for Deployment[src]

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