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.4/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]

Tags attached to the resource. Array of 1-50 maps, each of the form string:string (key:value). See Tagging Amazon Web Services Resources for more information, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no service-specific constraints beyond what is documented there.

§
value?: string | null
[src]

Stream-key value.