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

IpamPoolAllocation

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

In IPAM, an allocation is a CIDR assignment from an IPAM pool to another resource or IPAM pool.

interface IpamPoolAllocation {
Cidr?: string | null;
Description?: string | null;
IpamPoolAllocationId?: string | null;
ResourceId?: string | null;
ResourceOwner?: string | null;
ResourceRegion?: string | null;
ResourceType?: IpamPoolAllocationResourceType | null;
}

§Properties

§
Cidr?: string | null
[src]

The CIDR for the allocation. A CIDR is a representation of an IP address and its associated network mask (or netmask) and refers to a range of IP addresses. An IPv4 CIDR example is 10.24.34.0/23. An IPv6 CIDR example is 2001:DB8::/32.

§
Description?: string | null
[src]

A description of the pool allocation.

§
IpamPoolAllocationId?: string | null
[src]

The ID of an allocation.

§
ResourceId?: string | null
[src]

The ID of the resource.

§
ResourceOwner?: string | null
[src]

The owner of the resource.

§
ResourceRegion?: string | null
[src]

The Amazon Web Services Region of the resource.

§

The type of the resource.