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

StreamSession

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

Object that captures the Amazon IVS configuration that the customer provisioned, the ingest configurations that the broadcaster used, and the most recent Amazon IVS stream events it encountered.

interface StreamSession {
channel?: Channel | null;
endTime?: Date | number | null;
ingestConfiguration?: IngestConfiguration | null;
recordingConfiguration?: RecordingConfiguration | null;
startTime?: Date | number | null;
streamId?: string | null;
truncatedEvents?: StreamEvent[] | null;
}

§Properties

§
channel?: Channel | null
[src]

The properties of the channel at the time of going live.

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

UTC ISO-8601 formatted timestamp of when the channel went offline. For live streams, this is NULL.

§
ingestConfiguration?: IngestConfiguration | null
[src]

The properties of the incoming RTMP stream for the stream.

§
recordingConfiguration?: RecordingConfiguration | null
[src]

The properties of recording the live stream.

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

UTC ISO-8601 formatted timestamp of when the channel went live.

§
streamId?: string | null
[src]

Unique identifier for a live or previously live stream in the specified channel.

§
truncatedEvents?: StreamEvent[] | null
[src]

List of Amazon IVS events that the stream encountered. The list is sorted by most recent events and contains up to 500 events. For Amazon IVS events, see Using Amazon EventBridge with Amazon IVS.