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

LoadBalancerAddress

import type { LoadBalancerAddress } from "https://aws-api.deno.dev/v0.4/services/elbv2.ts?docs=full";

Information about a static IP address for a load balancer.

interface LoadBalancerAddress {
AllocationId?: string | null;
IpAddress?: string | null;
IPv6Address?: string | null;
PrivateIPv4Address?: string | null;
}

§Properties

§
AllocationId?: string | null
[src]

[Network Load Balancers] The allocation ID of the Elastic IP address for an internal-facing load balancer.

§
IpAddress?: string | null
[src]

The static IP address.

§
IPv6Address?: string | null
[src]

[Network Load Balancers] The IPv6 address.

§
PrivateIPv4Address?: string | null
[src]

[Network Load Balancers] The private IPv4 address for an internal load balancer.