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

LoadBalancerDescription

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

Information about a load balancer.

interface LoadBalancerDescription {
AvailabilityZones: string[];
BackendServerDescriptions: BackendServerDescription[];
CanonicalHostedZoneName?: string | null;
CanonicalHostedZoneNameID?: string | null;
CreatedTime?: Date | number | null;
DNSName?: string | null;
HealthCheck?: HealthCheck | null;
Instances: Instance[];
ListenerDescriptions: ListenerDescription[];
LoadBalancerName?: string | null;
Policies?: Policies | null;
Scheme?: string | null;
SecurityGroups: string[];
SourceSecurityGroup?: SourceSecurityGroup | null;
Subnets: string[];
VPCId?: string | null;
}

§Properties

§
AvailabilityZones: string[]
[src]

The Availability Zones for the load balancer.

§
BackendServerDescriptions: BackendServerDescription[]
[src]

Information about your EC2 instances.

§
CanonicalHostedZoneName?: string | null
[src]

The DNS name of the load balancer.

For more information, see Configure a Custom Domain Name in the Classic Load Balancers Guide.

§
CanonicalHostedZoneNameID?: string | null
[src]

The ID of the Amazon Route 53 hosted zone for the load balancer.

§
CreatedTime?: Date | number | null
[src]

The date and time the load balancer was created.

§
DNSName?: string | null
[src]

The DNS name of the load balancer.

§
HealthCheck?: HealthCheck | null
[src]

Information about the health checks conducted on the load balancer.

§
Instances: Instance[]
[src]

The IDs of the instances for the load balancer.

§
ListenerDescriptions: ListenerDescription[]
[src]

The listeners for the load balancer.

§
LoadBalancerName?: string | null
[src]

The name of the load balancer.

§
Policies?: Policies | null
[src]

The policies defined for the load balancer.

§
Scheme?: string | null
[src]

The type of load balancer. Valid only for load balancers in a VPC.

If Scheme is internet-facing, the load balancer has a public DNS name that resolves to a public IP address.

If Scheme is internal, the load balancer has a public DNS name that resolves to a private IP address.

§
SecurityGroups: string[]
[src]

The security groups for the load balancer. Valid only for load balancers in a VPC.

§
SourceSecurityGroup?: SourceSecurityGroup | null
[src]

The security group for the load balancer, which you can use as part of your inbound rules for your registered instances. To only allow traffic from load balancers, add a security group rule that specifies this source security group as the inbound source.

§
Subnets: string[]
[src]

The IDs of the subnets for the load balancer.

§
VPCId?: string | null
[src]

The ID of the VPC for the load balancer.