Class CfnDeploymentGroupPropsMixin.ELBInfoProperty
The ELBInfo property type specifies information about the ELB load balancer used for an CodeDeploy deployment group.
Implements
Inherited Members
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.
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 |
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.
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
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.