Struct aws_sdk_codedeploy::model::DeploymentOverview [−][src]
#[non_exhaustive]pub struct DeploymentOverview {
pub pending: i64,
pub in_progress: i64,
pub succeeded: i64,
pub failed: i64,
pub skipped: i64,
pub ready: i64,
}
Expand description
Information about the deployment status of the instances in the deployment.
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.pending: i64
The number of instances in the deployment in a pending state.
in_progress: i64
The number of instances in which the deployment is in progress.
succeeded: i64
The number of instances in the deployment to which revisions have been successfully deployed.
failed: i64
The number of instances in the deployment in a failed state.
skipped: i64
The number of instances in the deployment in a skipped state.
ready: i64
The number of instances in a replacement environment ready to receive traffic in a blue/green deployment.
Implementations
The number of instances in which the deployment is in progress.
The number of instances in the deployment to which revisions have been successfully deployed.
Creates a new builder-style object to manufacture DeploymentOverview
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 DeploymentOverview
impl Send for DeploymentOverview
impl Sync for DeploymentOverview
impl Unpin for DeploymentOverview
impl UnwindSafe for DeploymentOverview
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