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

RecordingConfiguration

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

An object representing a configuration to record a channel stream.

interface RecordingConfiguration {
arn: string;
destinationConfiguration: DestinationConfiguration;
name?: string | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
thumbnailConfiguration?: ThumbnailConfiguration | null;
}

§Properties

§
arn: string
[src]

Recording-configuration ARN.

§
destinationConfiguration: DestinationConfiguration
[src]

A complex type that contains information about where recorded video will be stored.

§
name?: string | null
[src]

Recording-configuration name. The value does not need to be unique.

§

Indicates the current state of the recording configuration. When the state is ACTIVE, the configuration is ready for recording a channel stream.

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

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

§
thumbnailConfiguration?: ThumbnailConfiguration | null
[src]

A complex type that allows you to enable/disable the recording of thumbnails for a live session and modify the interval at which thumbnails are generated for the live session.