Struct rusoto_elasticbeanstalk::Deployment [] [src]

pub struct Deployment {
    pub deployment_id: Option<NullableLong>,
    pub deployment_time: Option<DeploymentTimestamp>,
    pub status: Option<String>,
    pub version_label: Option<String>,
}

Information about an application version deployment.

Fields

The ID of the deployment. This number increases by one each time that you deploy source code or change instance configuration settings.

For in-progress deployments, the time that the deloyment started.

For completed deployments, the time that the deployment ended.

The status of the deployment:

  • In Progress : The deployment is in progress.

  • Deployed : The deployment succeeded.

  • Failed : The deployment failed.

The version label of the application version in the deployment.

Trait Implementations

impl Default for Deployment
[src]

Returns the "default value" for a type. Read more

impl Debug for Deployment
[src]

Formats the value using the given formatter.

impl Clone for Deployment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more