DeploymentGroupLoadBalancerInfo constructor

const DeploymentGroupLoadBalancerInfo({
  1. Input<List<DeploymentGroupLoadBalancerInfoElbInfo>?>? elbInfos,
  2. Input<List<DeploymentGroupLoadBalancerInfoTargetGroupInfo>?>? targetGroupInfos,
  3. Input<DeploymentGroupLoadBalancerInfoTargetGroupPairInfo?>? targetGroupPairInfo,
})

Creates a new DeploymentGroupLoadBalancerInfo. elbInfos The Classic Elastic Load Balancer to use in a deployment. Conflicts with targetGroupInfo and targetGroupPairInfo. targetGroupInfos The (Application/Network Load Balancer) target group to use in a deployment. Conflicts with elbInfo and targetGroupPairInfo. targetGroupPairInfo The (Application/Network Load Balancer) target group pair to use in a deployment. Conflicts with elbInfo and targetGroupInfo.

Implementation

const DeploymentGroupLoadBalancerInfo({
  this.elbInfos,
  this.targetGroupInfos,
  this.targetGroupPairInfo,
});