Class 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.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.CodeDeploy
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDeploymentGroup.DeploymentStyleProperty : CfnDeploymentGroup.IDeploymentStyleProperty
Syntax (vb)
Public Class CfnDeploymentGroup.DeploymentStyleProperty Implements CfnDeploymentGroup.IDeploymentStyleProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CodeDeploy;
var deploymentStyleProperty = new DeploymentStyleProperty {
DeploymentOption = "deploymentOption",
DeploymentType = "deploymentType"
};
Synopsis
Constructors
| 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. |
Properties
| DeploymentOption | Indicates whether to route deployment traffic behind a load balancer. |
| DeploymentType | Indicates whether to run an in-place or blue/green deployment. |
Constructors
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.
public DeploymentStyleProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CodeDeploy;
var deploymentStyleProperty = new DeploymentStyleProperty {
DeploymentOption = "deploymentOption",
DeploymentType = "deploymentType"
};
Properties
DeploymentOption
Indicates whether to route deployment traffic behind a load balancer.
public string? DeploymentOption { get; set; }
Property Value
Remarks
An Amazon EC2 Application Load Balancer or Network Load Balancer is required for an Amazon ECS deployment.
DeploymentType
Indicates whether to run an in-place or blue/green deployment.
public string? DeploymentType { get; set; }