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

StreamKey

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

Object specifying a stream key.

interface StreamKey {
arn?: string | null;
channelArn?: string | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
value?: string | null;
}

§Properties

§
arn?: string | null
[src]

Stream-key ARN.

§
channelArn?: string | null
[src]

Channel ARN for the stream.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

Array of 1-50 maps, each of the form string:string (key:value).

§
value?: string | null
[src]

Stream-key value.