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

CreateSubnetCidrReservationRequest

import type { CreateSubnetCidrReservationRequest } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";
interface CreateSubnetCidrReservationRequest {
Cidr: string;
Description?: string | null;
DryRun?: boolean | null;
ReservationType: SubnetCidrReservationType;
SubnetId: string;
TagSpecifications?: TagSpecification[] | null;
}

§Properties

§
Cidr: string
[src]

The IPv4 or IPV6 CIDR range to reserve.

§
Description?: string | null
[src]

The description to assign to the subnet CIDR reservation.

§
DryRun?: boolean | null
[src]

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

§

The type of reservation.

The following are valid values:

  • prefix: The Amazon EC2 Prefix Delegation feature assigns the IP addresses to network interfaces that are associated with an instance. For information about Prefix Delegation, see Prefix Delegation for Amazon EC2 network interfaces in the Amazon Elastic Compute Cloud User Guide.
  • explicit: You manually assign the IP addresses to resources that reside in your subnet.
§
SubnetId: string
[src]

The ID of the subnet.

§
TagSpecifications?: TagSpecification[] | null
[src]

The tags to assign to the subnet CIDR reservation.