Struct aws_sdk_elasticbeanstalk::model::Deployment
source · #[non_exhaustive]pub struct Deployment { /* private fields */ }
Expand description
Information about an application version deployment.
Implementations§
source§impl Deployment
impl Deployment
sourcepub fn version_label(&self) -> Option<&str>
pub fn version_label(&self) -> Option<&str>
The version label of the application version in the deployment.
sourcepub fn deployment_id(&self) -> Option<i64>
pub fn deployment_id(&self) -> Option<i64>
The ID of the deployment. This number increases by one each time that you deploy source code or change instance configuration settings.
sourcepub fn status(&self) -> Option<&str>
pub fn status(&self) -> Option<&str>
The status of the deployment:
-
In Progress
: The deployment is in progress. -
Deployed
: The deployment succeeded. -
Failed
: The deployment failed.
sourcepub fn deployment_time(&self) -> Option<&DateTime>
pub fn deployment_time(&self) -> Option<&DateTime>
For in-progress deployments, the time that the deployment started.
For completed deployments, the time that the deployment ended.
source§impl Deployment
impl Deployment
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture Deployment
.
Trait Implementations§
source§impl Clone for Deployment
impl Clone for Deployment
source§fn clone(&self) -> Deployment
fn clone(&self) -> Deployment
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for Deployment
impl Debug for Deployment
source§impl PartialEq<Deployment> for Deployment
impl PartialEq<Deployment> for Deployment
source§fn eq(&self, other: &Deployment) -> bool
fn eq(&self, other: &Deployment) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.