Interface CfnDeploymentGroup.BlueGreenDeploymentConfigurationProperty

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

@Stability(Stable) public static interface CfnDeploymentGroup.BlueGreenDeploymentConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Information about blue/green deployment options for a deployment group.

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.*;
 BlueGreenDeploymentConfigurationProperty blueGreenDeploymentConfigurationProperty = BlueGreenDeploymentConfigurationProperty.builder()
         .deploymentReadyOption(DeploymentReadyOptionProperty.builder()
                 .actionOnTimeout("actionOnTimeout")
                 .waitTimeInMinutes(123)
                 .build())
         .greenFleetProvisioningOption(GreenFleetProvisioningOptionProperty.builder()
                 .action("action")
                 .build())
         .terminateBlueInstancesOnDeploymentSuccess(BlueInstanceTerminationOptionProperty.builder()
                 .action("action")
                 .terminationWaitTimeInMinutes(123)
                 .build())
         .build();
 

See Also: