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

StartSessionResponse

import type { StartSessionResponse } from "https://aws-api.deno.dev/v0.3/services/ssm.ts?docs=full";
interface StartSessionResponse {
SessionId?: string | null;
StreamUrl?: string | null;
TokenValue?: string | null;
}

§Properties

§
SessionId?: string | null
[src]

The ID of the session.

§
StreamUrl?: string | null
[src]

A URL back to SSM Agent on the managed node that the Session Manager client uses to send commands and receive output from the node. Format: wss://ssmmessages.*region*.amazonaws.com/v1/data-channel/*session-id*?stream=(input|output)

region represents the Region identifier for an Amazon Web Services Region supported by Amazon Web Services Systems Manager, such as us-east-2 for the US East (Ohio) Region. For a list of supported region values, see the Region column in Systems Manager service endpoints in the Amazon Web Services General Reference.

session-id represents the ID of a Session Manager session, such as 1a2b3c4dEXAMPLE.

§
TokenValue?: string | null
[src]

An encrypted token value containing session and caller information. Used to authenticate the connection to the managed node.