Class CfnDeploymentGroup.LoadBalancerInfoProperty
The LoadBalancerInfo property type specifies information about the load balancer or target group used for an AWS CodeDeploy deployment group.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.CodeDeploy
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDeploymentGroup.LoadBalancerInfoProperty : CfnDeploymentGroup.ILoadBalancerInfoProperty
Syntax (vb)
Public Class CfnDeploymentGroup.LoadBalancerInfoProperty Implements CfnDeploymentGroup.ILoadBalancerInfoProperty
Remarks
For more information, see Integrating CodeDeploy with Elastic Load Balancing in the AWS CodeDeploy User Guide .
For CloudFormation to use the properties specified in LoadBalancerInfo , the DeploymentStyle.DeploymentOption property must be set to WITH_TRAFFIC_CONTROL . If DeploymentStyle.DeploymentOption is not set to WITH_TRAFFIC_CONTROL , CloudFormation ignores any settings specified in LoadBalancerInfo .
CloudFormation supports blue/green deployments on the AWS Lambda compute platform only.
LoadBalancerInfo is a property of the DeploymentGroup resource.
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 loadBalancerInfoProperty = new LoadBalancerInfoProperty {
ElbInfoList = new [] { new ELBInfoProperty {
Name = "name"
} },
TargetGroupInfoList = new [] { new TargetGroupInfoProperty {
Name = "name"
} },
TargetGroupPairInfoList = new [] { new TargetGroupPairInfoProperty {
ProdTrafficRoute = new TrafficRouteProperty {
ListenerArns = new [] { "listenerArns" }
},
TargetGroups = new [] { new TargetGroupInfoProperty {
Name = "name"
} },
TestTrafficRoute = new TrafficRouteProperty {
ListenerArns = new [] { "listenerArns" }
}
} }
};
Synopsis
Constructors
| LoadBalancerInfoProperty() | The |
Properties
| ElbInfoList | An array that contains information about the load balancers to use for load balancing in a deployment. |
| TargetGroupInfoList | An array that contains information about the target groups to use for load balancing in a deployment. |
| TargetGroupPairInfoList | The target group pair information. |
Constructors
LoadBalancerInfoProperty()
The LoadBalancerInfo property type specifies information about the load balancer or target group used for an AWS CodeDeploy deployment group.
public LoadBalancerInfoProperty()
Remarks
For more information, see Integrating CodeDeploy with Elastic Load Balancing in the AWS CodeDeploy User Guide .
For CloudFormation to use the properties specified in LoadBalancerInfo , the DeploymentStyle.DeploymentOption property must be set to WITH_TRAFFIC_CONTROL . If DeploymentStyle.DeploymentOption is not set to WITH_TRAFFIC_CONTROL , CloudFormation ignores any settings specified in LoadBalancerInfo .
CloudFormation supports blue/green deployments on the AWS Lambda compute platform only.
LoadBalancerInfo is a property of the DeploymentGroup resource.
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 loadBalancerInfoProperty = new LoadBalancerInfoProperty {
ElbInfoList = new [] { new ELBInfoProperty {
Name = "name"
} },
TargetGroupInfoList = new [] { new TargetGroupInfoProperty {
Name = "name"
} },
TargetGroupPairInfoList = new [] { new TargetGroupPairInfoProperty {
ProdTrafficRoute = new TrafficRouteProperty {
ListenerArns = new [] { "listenerArns" }
},
TargetGroups = new [] { new TargetGroupInfoProperty {
Name = "name"
} },
TestTrafficRoute = new TrafficRouteProperty {
ListenerArns = new [] { "listenerArns" }
}
} }
};
Properties
ElbInfoList
An array that contains information about the load balancers to use for load balancing in a deployment.
public object? ElbInfoList { get; set; }
Property Value
Remarks
If you're using Classic Load Balancers, specify those load balancers in this array.
You can add up to 10 load balancers to the array. > If you're using Application Load Balancers or Network Load Balancers, use the <code>targetGroupInfoList</code> array instead of this one.
Type union: either IResolvable or (either IResolvable or CfnDeploymentGroup.IELBInfoProperty)[]
TargetGroupInfoList
An array that contains information about the target groups to use for load balancing in a deployment.
public object? TargetGroupInfoList { get; set; }
Property Value
Remarks
If you're using Application Load Balancers and Network Load Balancers, specify their associated target groups in this array.
You can add up to 10 target groups to the array. > If you're using Classic Load Balancers, use the <code>elbInfoList</code> array instead of this one.
Type union: either IResolvable or (either IResolvable or CfnDeploymentGroup.ITargetGroupInfoProperty)[]
TargetGroupPairInfoList
The target group pair information.
public object? TargetGroupPairInfoList { get; set; }
Property Value
Remarks
This is an array of TargeGroupPairInfo objects with a maximum size of one.
Type union: either IResolvable or (either IResolvable or CfnDeploymentGroup.ITargetGroupPairInfoProperty)[]