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

VpnConnection

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

Describes a VPN connection.

interface VpnConnection {
Category?: string | null;
CoreNetworkArn?: string | null;
CoreNetworkAttachmentArn?: string | null;
CustomerGatewayConfiguration?: string | null;
CustomerGatewayId?: string | null;
GatewayAssociationState?: GatewayAssociationState | null;
Options?: VpnConnectionOptions | null;
Routes: VpnStaticRoute[];
State?: VpnState | null;
Tags: Tag[];
TransitGatewayId?: string | null;
Type?: GatewayType | null;
VgwTelemetry: VgwTelemetry[];
VpnConnectionId?: string | null;
VpnGatewayId?: string | null;
}

§Properties

§
Category?: string | null
[src]

The category of the VPN connection. A value of VPN indicates an Amazon Web Services VPN connection. A value of VPN-Classic indicates an Amazon Web Services Classic VPN connection.

§
CoreNetworkArn?: string | null
[src]

The ARN of the core network.

§
CoreNetworkAttachmentArn?: string | null
[src]

The ARN of the core network attachment.

§
CustomerGatewayConfiguration?: string | null
[src]

The configuration information for the VPN connection's customer gateway (in the native XML format). This element is always present in the "CreateVpnConnection" response; however, it's present in the "DescribeVpnConnections" response only if the VPN connection is in the pending or available state.

§
CustomerGatewayId?: string | null
[src]

The ID of the customer gateway at your end of the VPN connection.

§
GatewayAssociationState?: GatewayAssociationState | null
[src]

The current state of the gateway association.

§
Options?: VpnConnectionOptions | null
[src]

The VPN connection options.

§

The static routes associated with the VPN connection.

§
State?: VpnState | null
[src]

The current state of the VPN connection.

§
Tags: Tag[]
[src]

Any tags assigned to the VPN connection.

§
TransitGatewayId?: string | null
[src]

The ID of the transit gateway associated with the VPN connection.

§
Type?: GatewayType | null
[src]

The type of VPN connection.

§
VgwTelemetry: VgwTelemetry[]
[src]

Information about the VPN tunnel.

§
VpnConnectionId?: string | null
[src]

The ID of the VPN connection.

§
VpnGatewayId?: string | null
[src]

The ID of the virtual private gateway at the Amazon Web Services side of the VPN connection.