interface BlueGreenDeploymentConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeDeploy.Mixins.CfnDeploymentGroupPropsMixin.BlueGreenDeploymentConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodedeploy/mixins#CfnDeploymentGroupPropsMixin_BlueGreenDeploymentConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.codedeploy.mixins.CfnDeploymentGroupPropsMixin.BlueGreenDeploymentConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_codedeploy.mixins.CfnDeploymentGroupPropsMixin.BlueGreenDeploymentConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_codedeploy » mixins » CfnDeploymentGroupPropsMixin » BlueGreenDeploymentConfigurationProperty |
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 { mixins as codedeploy_mixins } from '@aws-cdk/mixins-preview/aws-codedeploy';
const blueGreenDeploymentConfigurationProperty: codedeploy_mixins.CfnDeploymentGroupPropsMixin.BlueGreenDeploymentConfigurationProperty = {
deploymentReadyOption: {
actionOnTimeout: 'actionOnTimeout',
waitTimeInMinutes: 123,
},
greenFleetProvisioningOption: {
action: 'action',
},
terminateBlueInstancesOnDeploymentSuccess: {
action: 'action',
terminationWaitTimeInMinutes: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| deployment | IResolvable | Deployment | Information about the action to take when newly provisioned instances are ready to receive traffic in a blue/green deployment. |
| green | IResolvable | Green | Information about how instances are provisioned for a replacement environment in a blue/green deployment. |
| terminate | IResolvable | Blue | Information about whether to terminate instances in the original fleet during a blue/green deployment. |
deploymentReadyOption?
Type:
IResolvable | Deployment
(optional)
Information about the action to take when newly provisioned instances are ready to receive traffic in a blue/green deployment.
greenFleetProvisioningOption?
Type:
IResolvable | Green
(optional)
Information about how instances are provisioned for a replacement environment in a blue/green deployment.
terminateBlueInstancesOnDeploymentSuccess?
Type:
IResolvable | Blue
(optional)
Information about whether to terminate instances in the original fleet during a blue/green deployment.

.NET
Go
Java
Python
TypeScript