Interface CfnDeploymentGroup.IDeploymentStyleProperty
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.
Namespace: Amazon.CDK.AWS.CodeDeploy
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDeploymentGroup.IDeploymentStyleProperty
Syntax (vb)
Public Interface 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
Properties
| DeploymentOption | Indicates whether to route deployment traffic behind a load balancer. |
| DeploymentType | Indicates whether to run an in-place or blue/green deployment. |
Properties
DeploymentOption
Indicates whether to route deployment traffic behind a load balancer.
string? DeploymentOption { get; }
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.
string? DeploymentType { get; }