import type * as mediatailor from "@distilled.cloud/aws/mediatailor"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { PlaybackConfiguration } from "./PlaybackConfiguration.ts"; /** * `ListPrefetchSchedules` request with `PlaybackConfigurationName` injected * from the bound {@link PlaybackConfiguration}. */ export interface ListPrefetchSchedulesRequest extends Omit { } /** * Runtime binding for `mediatailor:ListPrefetchSchedules` — page through the * prefetch schedules on the bound {@link PlaybackConfiguration}, optionally * filtered by `StreamId` or `ScheduleType`. * * Provide the implementation with * `Effect.provide(AWS.MediaTailor.ListPrefetchSchedulesHttp)`. * * ### Prefetching Ads * **Example:** List prefetch schedules for a stream * ```typescript * const listPrefetchSchedules = yield* AWS.MediaTailor.ListPrefetchSchedules(config); * * const { Items } = yield* listPrefetchSchedules({ StreamId: streamId }); * ``` * * @binding */ export interface ListPrefetchSchedules extends Binding.Service Effect.Effect<(request: ListPrefetchSchedulesRequest) => Effect.Effect>> { } export declare const ListPrefetchSchedules: ListPrefetchSchedules; //# sourceMappingURL=ListPrefetchSchedules.d.ts.map