Show / Hide Table of Contents

Class CfnDeploymentGroupPropsMixin.ELBInfoProperty

The ELBInfo property type specifies information about the ELB load balancer used for an CodeDeploy deployment group.

Inheritance
object
CfnDeploymentGroupPropsMixin.ELBInfoProperty
Implements
CfnDeploymentGroupPropsMixin.IELBInfoProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.CodeDeploy.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDeploymentGroupPropsMixin.ELBInfoProperty : CfnDeploymentGroupPropsMixin.IELBInfoProperty
Syntax (vb)
Public Class CfnDeploymentGroupPropsMixin.ELBInfoProperty Implements CfnDeploymentGroupPropsMixin.IELBInfoProperty
Remarks

If you specify the ELBInfo property, the DeploymentStyle.DeploymentOption property must be set to WITH_TRAFFIC_CONTROL for AWS CodeDeploy to route your traffic using the specified load balancers.

ELBInfo is a property of the AWS CodeDeploy DeploymentGroup LoadBalancerInfo property type.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-elbinfo.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.Mixins.Preview.AWS.CodeDeploy.Mixins;

             var eLBInfoProperty = new ELBInfoProperty {
                 Name = "name"
             };

Synopsis

Constructors

ELBInfoProperty()

The ELBInfo property type specifies information about the ELB load balancer used for an CodeDeploy deployment group.

Properties

Name

For blue/green deployments, the name of the load balancer that is used to route traffic from original instances to replacement instances in a blue/green deployment.

Constructors

ELBInfoProperty()

The ELBInfo property type specifies information about the ELB load balancer used for an CodeDeploy deployment group.

public ELBInfoProperty()
Remarks

If you specify the ELBInfo property, the DeploymentStyle.DeploymentOption property must be set to WITH_TRAFFIC_CONTROL for AWS CodeDeploy to route your traffic using the specified load balancers.

ELBInfo is a property of the AWS CodeDeploy DeploymentGroup LoadBalancerInfo property type.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-elbinfo.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.Mixins.Preview.AWS.CodeDeploy.Mixins;

             var eLBInfoProperty = new ELBInfoProperty {
                 Name = "name"
             };

Properties

Name

For blue/green deployments, the name of the load balancer that is used to route traffic from original instances to replacement instances in a blue/green deployment.

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

string

Remarks

For in-place deployments, the name of the load balancer that instances are deregistered from so they are not serving traffic during a deployment, and then re-registered with after the deployment is complete.

CloudFormation supports blue/green deployments on AWS Lambda compute platforms only.

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

Implements

CfnDeploymentGroupPropsMixin.IELBInfoProperty
Back to top Generated by DocFX