Struct aws_sdk_codedeploy::model::LastDeploymentInfo
source · #[non_exhaustive]pub struct LastDeploymentInfo { /* private fields */ }
Expand description
Information about the most recent attempted or successful deployment to a deployment group.
Implementations§
source§impl LastDeploymentInfo
impl LastDeploymentInfo
sourcepub fn deployment_id(&self) -> Option<&str>
pub fn deployment_id(&self) -> Option<&str>
The unique ID of a deployment.
sourcepub fn status(&self) -> Option<&DeploymentStatus>
pub fn status(&self) -> Option<&DeploymentStatus>
The status of the most recent deployment.
sourcepub fn end_time(&self) -> Option<&DateTime>
pub fn end_time(&self) -> Option<&DateTime>
A timestamp that indicates when the most recent deployment to the deployment group was complete.
sourcepub fn create_time(&self) -> Option<&DateTime>
pub fn create_time(&self) -> Option<&DateTime>
A timestamp that indicates when the most recent deployment to the deployment group started.
source§impl LastDeploymentInfo
impl LastDeploymentInfo
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture LastDeploymentInfo
.
Trait Implementations§
source§impl Clone for LastDeploymentInfo
impl Clone for LastDeploymentInfo
source§fn clone(&self) -> LastDeploymentInfo
fn clone(&self) -> LastDeploymentInfo
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 LastDeploymentInfo
impl Debug for LastDeploymentInfo
source§impl PartialEq<LastDeploymentInfo> for LastDeploymentInfo
impl PartialEq<LastDeploymentInfo> for LastDeploymentInfo
source§fn eq(&self, other: &LastDeploymentInfo) -> bool
fn eq(&self, other: &LastDeploymentInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.