Struct aws_sdk_codedeploy::model::DeploymentReadyOption [−][src]
#[non_exhaustive]pub struct DeploymentReadyOption {
pub action_on_timeout: Option<DeploymentReadyAction>,
pub wait_time_in_minutes: i32,
}
Expand description
Information about how traffic is rerouted to instances in a replacement environment in a blue/green 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.action_on_timeout: Option<DeploymentReadyAction>
Information about when to reroute traffic from an original environment to a replacement environment in a blue/green deployment.
-
CONTINUE_DEPLOYMENT: Register new instances with the load balancer immediately after the new application revision is installed on the instances in the replacement environment.
-
STOP_DEPLOYMENT: Do not register new instances with a load balancer unless traffic rerouting is started using ContinueDeployment. If traffic rerouting is not started before the end of the specified wait period, the deployment status is changed to Stopped.
wait_time_in_minutes: i32
The number of minutes to wait before the status of a blue/green deployment is changed
to Stopped if rerouting is not started manually. Applies only to the
STOP_DEPLOYMENT
option for actionOnTimeout
.
Implementations
Information about when to reroute traffic from an original environment to a replacement environment in a blue/green deployment.
-
CONTINUE_DEPLOYMENT: Register new instances with the load balancer immediately after the new application revision is installed on the instances in the replacement environment.
-
STOP_DEPLOYMENT: Do not register new instances with a load balancer unless traffic rerouting is started using ContinueDeployment. If traffic rerouting is not started before the end of the specified wait period, the deployment status is changed to Stopped.
The number of minutes to wait before the status of a blue/green deployment is changed
to Stopped if rerouting is not started manually. Applies only to the
STOP_DEPLOYMENT
option for actionOnTimeout
.
Creates a new builder-style object to manufacture DeploymentReadyOption
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 DeploymentReadyOption
impl Send for DeploymentReadyOption
impl Sync for DeploymentReadyOption
impl Unpin for DeploymentReadyOption
impl UnwindSafe for DeploymentReadyOption
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