@Stability(value=Stable)
public static interface CfnDeploymentGroup.BlueGreenDeploymentConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeploymentGroup.BlueGreenDeploymentConfigurationProperty.Builder
|
static class |
CfnDeploymentGroup.BlueGreenDeploymentConfigurationProperty.Jsii$Proxy
An implementation for
CfnDeploymentGroup.BlueGreenDeploymentConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeploymentGroup.BlueGreenDeploymentConfigurationProperty.Builder |
builder() |
default Object |
getDeploymentReadyOption()
Information about the action to take when newly provisioned instances are ready to receive traffic in a blue/green deployment.
|
default Object |
getGreenFleetProvisioningOption()
Information about how instances are provisioned for a replacement environment in a blue/green deployment.
|
default Object |
getTerminateBlueInstancesOnDeploymentSuccess()
Information about whether to terminate instances in the original fleet during a blue/green deployment.
|
@Stability(value=Stable) @Nullable default Object getDeploymentReadyOption()
@Stability(value=Stable) @Nullable default Object getGreenFleetProvisioningOption()
@Stability(value=Stable) @Nullable default Object getTerminateBlueInstancesOnDeploymentSuccess()
@Stability(value=Stable) static CfnDeploymentGroup.BlueGreenDeploymentConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.