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

Session

import type { Session } from "https://aws-api.deno.dev/v0.4/services/appstream.ts?docs=full";

Describes a streaming session.

interface Session {
AuthenticationType?: AuthenticationType | null;
ConnectionState?: SessionConnectionState | null;
FleetName: string;
Id: string;
MaxExpirationTime?: Date | number | null;
NetworkAccessConfiguration?: NetworkAccessConfiguration | null;
StackName: string;
StartTime?: Date | number | null;
State: SessionState;
UserId: string;
}

§Properties

§
AuthenticationType?: AuthenticationType | null
[src]

The authentication method. The user is authenticated using a streaming URL (API) or SAML 2.0 federation (SAML).

§
ConnectionState?: SessionConnectionState | null
[src]

Specifies whether a user is connected to the streaming session.

§
FleetName: string
[src]

The name of the fleet for the streaming session.

§
Id: string
[src]

The identifier of the streaming session.

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

The time when the streaming session is set to expire. This time is based on the MaxUserDurationinSeconds value, which determines the maximum length of time that a streaming session can run. A streaming session might end earlier than the time specified in SessionMaxExpirationTime, when the DisconnectTimeOutInSeconds elapses or the user chooses to end his or her session. If the DisconnectTimeOutInSeconds elapses, or the user chooses to end his or her session, the streaming instance is terminated and the streaming session ends.

§
NetworkAccessConfiguration?: NetworkAccessConfiguration | null
[src]

The network details for the streaming session.

§
StackName: string
[src]

The name of the stack for the streaming session.

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

The time when a streaming instance is dedicated for the user.

§

The current state of the streaming session.

§
UserId: string
[src]

The identifier of the user for whom the session was created.