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

IpamScope

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

In IPAM, a scope is the highest-level container within IPAM. An IPAM contains two default scopes. Each scope represents the IP space for a single network. The private scope is intended for all private IP address space. The public scope is intended for all public IP address space. Scopes enable you to reuse IP addresses across multiple unconnected networks without causing IP address overlap or conflict.

For more information, see How IPAM works in the Amazon VPC IPAM User Guide

interface IpamScope {
Description?: string | null;
IpamArn?: string | null;
IpamRegion?: string | null;
IpamScopeArn?: string | null;
IpamScopeId?: string | null;
IpamScopeType?: IpamScopeType | null;
IsDefault?: boolean | null;
OwnerId?: string | null;
PoolCount?: number | null;
State?: IpamScopeState | null;
Tags: Tag[];
}

§Properties

§
Description?: string | null
[src]

The description of the scope.

§
IpamArn?: string | null
[src]

The ARN of the IPAM.

§
IpamRegion?: string | null
[src]

The Amazon Web Services Region of the IPAM scope.

§
IpamScopeArn?: string | null
[src]

The ARN of the scope.

§
IpamScopeId?: string | null
[src]

The ID of the scope.

§
IpamScopeType?: IpamScopeType | null
[src]

The type of the scope.

§
IsDefault?: boolean | null
[src]

Defines if the scope is the default scope or not.

§
OwnerId?: string | null
[src]

The Amazon Web Services account ID of the owner of the scope.

§
PoolCount?: number | null
[src]

The number of pools in the scope.

§
State?: IpamScopeState | null
[src]

The state of the IPAM scope.

§
Tags: Tag[]
[src]

The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.