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

StreamingSessionStream

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

A stream is an active connection to a streaming session, enabling a studio user to control the streaming session using a compatible client. Streaming session streams are compatible with the NICE DCV web client, included in the Nimble Studio portal, or the NICE DCV desktop client.

interface StreamingSessionStream {
createdAt?: Date | number | null;
createdBy?: string | null;
expiresAt?: Date | number | null;
ownedBy?: string | null;
streamId?: string | null;
url?: string | null;
}

§Properties

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

The ISO timestamp in seconds for when the resource was created.

§
createdBy?: string | null
[src]

The user ID of the user that created the streaming session stream.

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

The ISO timestamp in seconds for when the resource expires.

§
ownedBy?: string | null
[src]

The user ID of the user that owns the streaming session. The user that owns the session will be logging into the session and interacting with the virtual workstation.

§

The current state.

§

The streaming session stream status code.

§
streamId?: string | null
[src]

The stream ID.

§
url?: string | null
[src]

The URL to connect to this stream using the DCV client.