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

CreateNatGatewayRequest

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

§Properties

§
AllocationId?: string | null
[src]

[Public NAT gateways only] The allocation ID of an Elastic IP address to associate with the NAT gateway. You cannot specify an Elastic IP address with a private NAT gateway. If the Elastic IP address is associated with another resource, you must first disassociate it.

§
ClientToken?: string | null
[src]

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.

Constraint: Maximum 64 ASCII characters.

§
ConnectivityType?: ConnectivityType | null
[src]

Indicates whether the NAT gateway supports public or private connectivity. The default is public connectivity.

§
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.

§
SubnetId: string
[src]

The subnet in which to create the NAT gateway.

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

The tags to assign to the NAT gateway.