aws-cdk-lib.aws_codedeploy.CfnDeploymentGroup.DeploymentStyleProperty

interface DeploymentStyleProperty

LanguageType name
.NETAmazon.CDK.AWS.CodeDeploy.CfnDeploymentGroup.DeploymentStyleProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscodedeploy#CfnDeploymentGroup_DeploymentStyleProperty
Javasoftware.amazon.awscdk.services.codedeploy.CfnDeploymentGroup.DeploymentStyleProperty
Pythonaws_cdk.aws_codedeploy.CfnDeploymentGroup.DeploymentStyleProperty
TypeScript aws-cdk-lib » aws_codedeploy » CfnDeploymentGroup » DeploymentStyleProperty

Information about the type of deployment, either in-place or blue/green, you want to run and whether to route deployment traffic behind a load balancer.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_codedeploy as codedeploy } from 'aws-cdk-lib';
const deploymentStyleProperty: codedeploy.CfnDeploymentGroup.DeploymentStyleProperty = {
  deploymentOption: 'deploymentOption',
  deploymentType: 'deploymentType',
};

Properties

NameTypeDescription
deploymentOption?stringIndicates whether to route deployment traffic behind a load balancer.
deploymentType?stringIndicates whether to run an in-place or blue/green deployment.

deploymentOption?

Type: string (optional)

Indicates whether to route deployment traffic behind a load balancer.

An Amazon EC2 Application Load Balancer or Network Load Balancer is required for an Amazon ECS deployment.


deploymentType?

Type: string (optional)

Indicates whether to run an in-place or blue/green deployment.