You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CodeDeploy::Types::DeploymentReadyOption

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing DeploymentReadyOption as input to an Aws::Client method, you can use a vanilla Hash:

{
  action_on_timeout: "CONTINUE_DEPLOYMENT", # accepts CONTINUE_DEPLOYMENT, STOP_DEPLOYMENT
  wait_time_in_minutes: 1,
}

Information about how traffic is rerouted to instances in a replacement environment in a blue/green deployment.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#action_on_timeoutString

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.

    Possible values:

    • CONTINUE_DEPLOYMENT
    • STOP_DEPLOYMENT

Returns:

  • (String)

    Information about when to reroute traffic from an original environment to a replacement environment in a blue/green deployment.

#wait_time_in_minutesInteger

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.

Returns:

  • (Integer)

    The number of minutes to wait before the status of a blue/green deployment is changed to Stopped if rerouting is not started manually.