Struct aws_sdk_codedeploy::model::LastDeploymentInfo [−][src]
#[non_exhaustive]pub struct LastDeploymentInfo {
pub deployment_id: Option<String>,
pub status: Option<DeploymentStatus>,
pub end_time: Option<DateTime>,
pub create_time: Option<DateTime>,
}
Expand description
Information about the most recent attempted or successful deployment to a deployment group.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.deployment_id: Option<String>
The unique ID of a deployment.
status: Option<DeploymentStatus>
The status of the most recent deployment.
end_time: Option<DateTime>
A timestamp that indicates when the most recent deployment to the deployment group was complete.
create_time: Option<DateTime>
A timestamp that indicates when the most recent deployment to the deployment group started.
Implementations
The unique ID of a deployment.
The status of the most recent deployment.
A timestamp that indicates when the most recent deployment to the deployment group was complete.
A timestamp that indicates when the most recent deployment to the deployment group started.
Creates a new builder-style object to manufacture LastDeploymentInfo
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for LastDeploymentInfo
impl Send for LastDeploymentInfo
impl Sync for LastDeploymentInfo
impl Unpin for LastDeploymentInfo
impl UnwindSafe for LastDeploymentInfo
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more