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.4/services/ec2.ts?docs=full";
interface CreateNatGatewayRequest {
AllocationId?: string | null;
ClientToken?: string | null;
ConnectivityType?: ConnectivityType | null;
DryRun?: boolean | null;
PrivateIpAddress?: string | null;
SecondaryAllocationIds?: string[] | null;
SecondaryPrivateIpAddressCount?: number | null;
SecondaryPrivateIpAddresses?: string[] | 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.

§
PrivateIpAddress?: string | null
[src]

The private IPv4 address to assign to the NAT gateway. If you don't provide an address, a private IPv4 address will be automatically assigned.

§
SecondaryAllocationIds?: string[] | null
[src]

Secondary EIP allocation IDs. For more information about secondary addresses, see Create a NAT gateway in the Amazon Virtual Private Cloud User Guide.

§
SecondaryPrivateIpAddressCount?: number | null
[src]

[Private NAT gateway only] The number of secondary private IPv4 addresses you want to assign to the NAT gateway. For more information about secondary addresses, see Create a NAT gateway in the Amazon Virtual Private Cloud User Guide.

§
SecondaryPrivateIpAddresses?: string[] | null
[src]

Secondary private IPv4 addresses. For more information about secondary addresses, see Create a NAT gateway in the Amazon Virtual Private Cloud User Guide.

§
SubnetId: string
[src]

The ID of the subnet in which to create the NAT gateway.

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

The tags to assign to the NAT gateway.