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

PublicIpv4Pool

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

Describes an IPv4 address pool.

interface PublicIpv4Pool {
Description?: string | null;
NetworkBorderGroup?: string | null;
PoolAddressRanges: PublicIpv4PoolRange[];
PoolId?: string | null;
Tags: Tag[];
TotalAddressCount?: number | null;
TotalAvailableAddressCount?: number | null;
}

§Properties

§
Description?: string | null
[src]

A description of the address pool.

§
NetworkBorderGroup?: string | null
[src]

The name of the location from which the address pool is advertised. A network border group is a unique set of Availability Zones or Local Zones from where Amazon Web Services advertises public IP addresses.

§
PoolAddressRanges: PublicIpv4PoolRange[]
[src]

The address ranges.

§
PoolId?: string | null
[src]

The ID of the address pool.

§
Tags: Tag[]
[src]

Any tags for the address pool.

§
TotalAddressCount?: number | null
[src]

The total number of addresses.

§
TotalAvailableAddressCount?: number | null
[src]

The total number of available addresses.