import type * as kv from "@distilled.cloud/aws/kinesis-video"; import type * as kvam from "@distilled.cloud/aws/kinesis-video-archived-media"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Stream } from "./Stream.ts"; export interface GetDASHStreamingSessionURLRequest extends Omit { } /** * Runtime binding for `kinesisvideo:GetDASHStreamingSessionURL` (archived * media data plane). * * Bind this operation to a `Stream` inside a function runtime to get a * callable that resolves the per-stream data endpoint (`GetDataEndpoint`) * and returns a short-lived MPEG-DASH playback URL. * ### Reading Media * **Example:** Live DASH Playback URL * ```typescript * // init * const getDash = yield* AWS.KinesisVideo.GetDASHStreamingSessionURL(stream); * * // runtime * const { DASHStreamingSessionURL } = yield* getDash({ * PlaybackMode: "LIVE", * }); * ``` * * @binding */ export interface GetDASHStreamingSessionURL extends Binding.Service(stream: S) => Effect.Effect<(request?: GetDASHStreamingSessionURLRequest) => Effect.Effect>> { } export declare const GetDASHStreamingSessionURL: GetDASHStreamingSessionURL; //# sourceMappingURL=GetDASHStreamingSessionURL.d.ts.map