Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

LoadBalancerInfo

import type { LoadBalancerInfo } from "https://aws-api.deno.dev/v0.3/services/codedeploy.ts?docs=full";

Information about the Elastic Load Balancing load balancer or target group used in a deployment.

interface LoadBalancerInfo {
elbInfoList?: ELBInfo[] | null;
targetGroupInfoList?: TargetGroupInfo[] | null;
targetGroupPairInfoList?: TargetGroupPairInfo[] | null;
}

§Properties

§
elbInfoList?: ELBInfo[] | null
[src]

An array that contains information about the load balancer to use for load balancing in a deployment. In Elastic Load Balancing, load balancers are used with Classic Load Balancers.

Note: Adding more than one load balancer to the array is not supported.

§
targetGroupInfoList?: TargetGroupInfo[] | null
[src]

An array that contains information about the target group to use for load balancing in a deployment. In Elastic Load Balancing, target groups are used with Application Load Balancers.

Note: Adding more than one target group to the array is not supported.

§
targetGroupPairInfoList?: TargetGroupPairInfo[] | null
[src]

The target group pair information. This is an array of TargeGroupPairInfo objects with a maximum size of one.