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

PublicIpv4PoolRange

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

Describes an address range of an IPv4 address pool.

interface PublicIpv4PoolRange {
AddressCount?: number | null;
AvailableAddressCount?: number | null;
FirstAddress?: string | null;
LastAddress?: string | null;
}

§Properties

§
AddressCount?: number | null
[src]

The number of addresses in the range.

§
AvailableAddressCount?: number | null
[src]

The number of available addresses in the range.

§
FirstAddress?: string | null
[src]

The first IP address in the range.

§
LastAddress?: string | null
[src]

The last IP address in the range.