Show / Hide Table of Contents

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.

Inheritance
object
CfnDeploymentGroup.DeploymentStyleProperty
Implements
CfnDeploymentGroup.IDeploymentStyleProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

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

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

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"
             };

Properties

DeploymentOption

Indicates whether to route deployment traffic behind a load balancer.

public string? DeploymentOption { get; set; }
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.

public string? DeploymentType { get; set; }
Property Value

string

Remarks

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

Implements

CfnDeploymentGroup.IDeploymentStyleProperty
Back to top Generated by DocFX