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

NatGatewayAddress

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

Describes the IP addresses and network interface associated with a NAT gateway.

interface NatGatewayAddress {
AllocationId?: string | null;
NetworkInterfaceId?: string | null;
PrivateIp?: string | null;
PublicIp?: string | null;
}

§Properties

§
AllocationId?: string | null
[src]

[Public NAT gateway only] The allocation ID of the Elastic IP address that's associated with the NAT gateway.

§
NetworkInterfaceId?: string | null
[src]

The ID of the network interface associated with the NAT gateway.

§
PrivateIp?: string | null
[src]

The private IP address associated with the NAT gateway.

§
PublicIp?: string | null
[src]

[Public NAT gateway only] The Elastic IP address associated with the NAT gateway.