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

VpnConnectionOptionsSpecification

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

Describes VPN connection options.

interface VpnConnectionOptionsSpecification {
EnableAcceleration?: boolean | null;
LocalIpv4NetworkCidr?: string | null;
LocalIpv6NetworkCidr?: string | null;
RemoteIpv4NetworkCidr?: string | null;
RemoteIpv6NetworkCidr?: string | null;
StaticRoutesOnly?: boolean | null;
TunnelInsideIpVersion?: TunnelInsideIpVersion | null;
TunnelOptions?: VpnTunnelOptionsSpecification[] | null;
}

§Properties

§
EnableAcceleration?: boolean | null
[src]

Indicate whether to enable acceleration for the VPN connection.

Default: false

§
LocalIpv4NetworkCidr?: string | null
[src]

The IPv4 CIDR on the customer gateway (on-premises) side of the VPN connection.

Default: 0.0.0.0/0

§
LocalIpv6NetworkCidr?: string | null
[src]

The IPv6 CIDR on the customer gateway (on-premises) side of the VPN connection.

Default: ::/0

§
RemoteIpv4NetworkCidr?: string | null
[src]

The IPv4 CIDR on the Amazon Web Services side of the VPN connection.

Default: 0.0.0.0/0

§
RemoteIpv6NetworkCidr?: string | null
[src]

The IPv6 CIDR on the Amazon Web Services side of the VPN connection.

Default: ::/0

§
StaticRoutesOnly?: boolean | null
[src]

Indicate whether the VPN connection uses static routes only. If you are creating a VPN connection for a device that does not support BGP, you must specify true. Use "CreateVpnConnectionRoute" to create a static route.

Default: false

§
TunnelInsideIpVersion?: TunnelInsideIpVersion | null
[src]

Indicate whether the VPN tunnels process IPv4 or IPv6 traffic.

Default: ipv4

§
TunnelOptions?: VpnTunnelOptionsSpecification[] | null
[src]

The tunnel options for the VPN connection.