Interface CfnDeploymentGroup.DeploymentReadyOptionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDeploymentGroup.DeploymentReadyOptionProperty.Jsii$Proxy
Enclosing class:
CfnDeploymentGroup

@Stability(Stable) public static interface CfnDeploymentGroup.DeploymentReadyOptionProperty extends software.amazon.jsii.JsiiSerializable
Information about how traffic is rerouted to instances in a replacement environment in a blue/green deployment.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.codedeploy.*;
 DeploymentReadyOptionProperty deploymentReadyOptionProperty = DeploymentReadyOptionProperty.builder()
         .actionOnTimeout("actionOnTimeout")
         .waitTimeInMinutes(123)
         .build();
 

See Also: