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

SubnetCidrReservation

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

Describes a subnet CIDR reservation.

interface SubnetCidrReservation {
Cidr?: string | null;
Description?: string | null;
OwnerId?: string | null;
ReservationType?: SubnetCidrReservationType | null;
SubnetCidrReservationId?: string | null;
SubnetId?: string | null;
Tags: Tag[];
}

§Properties

§
Cidr?: string | null
[src]

The CIDR that has been reserved.

§
Description?: string | null
[src]

The description assigned to the subnet CIDR reservation.

§
OwnerId?: string | null
[src]

The ID of the account that owns the subnet CIDR reservation.

§
ReservationType?: SubnetCidrReservationType | null
[src]

The type of reservation.

§
SubnetCidrReservationId?: string | null
[src]

The ID of the subnet CIDR reservation.

§
SubnetId?: string | null
[src]

The ID of the subnet.

§
Tags: Tag[]
[src]

The tags assigned to the subnet CIDR reservation.