Struct aws_sdk_elasticbeanstalk::model::Deployment
source · [−]#[non_exhaustive]pub struct Deployment {
pub version_label: Option<String>,
pub deployment_id: Option<i64>,
pub status: Option<String>,
pub deployment_time: Option<DateTime>,
}
Expand description
Information about an application version 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.version_label: Option<String>
The version label of the application version in the deployment.
deployment_id: Option<i64>
The ID of the deployment. This number increases by one each time that you deploy source code or change instance configuration settings.
status: Option<String>
The status of the deployment:
-
In Progress
: The deployment is in progress. -
Deployed
: The deployment succeeded. -
Failed
: The deployment failed.
deployment_time: Option<DateTime>
For in-progress deployments, the time that the deployment started.
For completed deployments, the time that the deployment ended.
Implementations
The version label of the application version in the deployment.
The ID of the deployment. This number increases by one each time that you deploy source code or change instance configuration settings.
The status of the deployment:
-
In Progress
: The deployment is in progress. -
Deployed
: The deployment succeeded. -
Failed
: The deployment failed.
For in-progress deployments, the time that the deployment started.
For completed deployments, the time that the deployment ended.
Creates a new builder-style object to manufacture Deployment
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 Deployment
impl Send for Deployment
impl Sync for Deployment
impl Unpin for Deployment
impl UnwindSafe for Deployment
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