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

IoTSecureTunneling

import { IoTSecureTunneling } from "https://aws-api.deno.dev/v0.1/services/iotsecuretunneling.ts?docs=full";
class IoTSecureTunneling {
constructor(apiFactory: client.ApiFactory);
async closeTunnel(params: CloseTunnelRequest): Promise<void>;
async describeTunnel(params: DescribeTunnelRequest): Promise<DescribeTunnelResponse>;
async listTagsForResource(params: ListTagsForResourceRequest): Promise<ListTagsForResourceResponse>;
async listTunnels(params?: ListTunnelsRequest): Promise<ListTunnelsResponse>;
async openTunnel(params?: OpenTunnelRequest): Promise<OpenTunnelResponse>;
async tagResource(params: TagResourceRequest): Promise<void>;
async untagResource(params: UntagResourceRequest): Promise<void>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new IoTSecureTunneling(apiFactory: client.ApiFactory)
[src]

§Methods

§
closeTunnel(params: CloseTunnelRequest): Promise<void>
[src]

Closes a tunnel identified by the unique tunnel id. When a CloseTunnel request is received, we close the WebSocket connections between the client and proxy server so no data can be transmitted.

§
describeTunnel(params: DescribeTunnelRequest): Promise<DescribeTunnelResponse>
[src]

Gets information about a tunnel identified by the unique tunnel id.

§
listTagsForResource(params: ListTagsForResourceRequest): Promise<ListTagsForResourceResponse>
[src]

Lists the tags for the specified resource.

§
listTunnels(params?: ListTunnelsRequest): Promise<ListTunnelsResponse>
[src]

List all tunnels for an AWS account. Tunnels are listed by creation time in descending order, newer tunnels will be listed before older tunnels.

§
openTunnel(params?: OpenTunnelRequest): Promise<OpenTunnelResponse>
[src]

Creates a new tunnel, and returns two client access tokens for clients to use to connect to the AWS IoT Secure Tunneling proxy server.

§
tagResource(params: TagResourceRequest): Promise<void>
[src]

A resource tag.

§
untagResource(params: UntagResourceRequest): Promise<void>
[src]

Removes a tag from a resource.

§Static Properties