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

Tunnel

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

A connection between a source computer and a destination device.

interface Tunnel {
createdAt?: Date | number | null;
description?: string | null;
destinationConfig?: DestinationConfig | null;
destinationConnectionState?: ConnectionState | null;
lastUpdatedAt?: Date | number | null;
sourceConnectionState?: ConnectionState | null;
status?: TunnelStatus | null;
tags?: Tag[] | null;
timeoutConfig?: TimeoutConfig | null;
tunnelArn?: string | null;
tunnelId?: string | null;
}

§Properties

§
createdAt?: Date | number | null
[src]

The time when the tunnel was created.

§
description?: string | null
[src]

A description of the tunnel.

§
destinationConfig?: DestinationConfig | null
[src]

The destination configuration that specifies the thing name of the destination device and a service name that the local proxy uses to connect to the destination application.

§
destinationConnectionState?: ConnectionState | null
[src]

The connection state of the destination application.

§
lastUpdatedAt?: Date | number | null
[src]

The last time the tunnel was updated.

§
sourceConnectionState?: ConnectionState | null
[src]

The connection state of the source application.

§
status?: TunnelStatus | null
[src]

The status of a tunnel. Valid values are: Open and Closed.

§
tags?: Tag[] | null
[src]

A list of tag metadata associated with the secure tunnel.

§
timeoutConfig?: TimeoutConfig | null
[src]

Timeout configuration for the tunnel.

§
tunnelArn?: string | null
[src]

The Amazon Resource Name (ARN) of a tunnel. The tunnel ARN format is arn:aws:tunnel:<region>:<account-id>:tunnel/<tunnel-id>

§
tunnelId?: string | null
[src]

A unique alpha-numeric ID that identifies a tunnel.