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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDeploymentGroup.BlueGreenDeploymentConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectInformation about the action to take when newly provisioned instances are ready to receive traffic in a blue/green deployment.default ObjectInformation about how instances are provisioned for a replacement environment in a blue/green deployment.default ObjectInformation about whether to terminate instances in the original fleet during a blue/green deployment.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDeploymentReadyOption
Information about the action to take when newly provisioned instances are ready to receive traffic in a blue/green deployment. -
getGreenFleetProvisioningOption
Information about how instances are provisioned for a replacement environment in a blue/green deployment. -
getTerminateBlueInstancesOnDeploymentSuccess
Information about whether to terminate instances in the original fleet during a blue/green deployment. -
builder
@Stability(Stable) static CfnDeploymentGroup.BlueGreenDeploymentConfigurationProperty.Builder builder()
-