Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html

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

string

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymentoption

DeploymentType

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

string? DeploymentType { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymenttype

Back to top Generated by DocFX