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

ElasticLoadBalancer

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

Describes an Elastic Load Balancing instance.

interface ElasticLoadBalancer {
AvailabilityZones?: string[] | null;
DnsName?: string | null;
Ec2InstanceIds?: string[] | null;
ElasticLoadBalancerName?: string | null;
LayerId?: string | null;
Region?: string | null;
StackId?: string | null;
SubnetIds?: string[] | null;
VpcId?: string | null;
}

§Properties

§
AvailabilityZones?: string[] | null
[src]

A list of Availability Zones.

§
DnsName?: string | null
[src]

The instance's public DNS name.

§
Ec2InstanceIds?: string[] | null
[src]

A list of the EC2 instances that the Elastic Load Balancing instance is managing traffic for.

§
ElasticLoadBalancerName?: string | null
[src]

The Elastic Load Balancing instance's name.

§
LayerId?: string | null
[src]

The ID of the layer that the instance is attached to.

§
Region?: string | null
[src]

The instance's AWS region.

§
StackId?: string | null
[src]

The ID of the stack that the instance is associated with.

§
SubnetIds?: string[] | null
[src]

A list of subnet IDs, if the stack is running in a VPC.

§
VpcId?: string | null
[src]

The VPC ID.