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

LocalSizeConfig

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

The configuration details that include the maximum size of the media (MaxLocalMediaSizeInMB) that you want to store for a stream on the Edge Agent, as well as the strategy that should be used (StrategyOnFullSize) when a stream's maximum size has been reached.

interface LocalSizeConfig {
MaxLocalMediaSizeInMB?: number | null;
StrategyOnFullSize?: StrategyOnFullSize | null;
}

§Properties

§
MaxLocalMediaSizeInMB?: number | null
[src]

The overall maximum size of the media that you want to store for a stream on the Edge Agent.

§
StrategyOnFullSize?: StrategyOnFullSize | null
[src]

The strategy to perform when a stream’s MaxLocalMediaSizeInMB limit is reached.