import type * as mediatailor from "@distilled.cloud/aws/mediatailor"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for `mediatailor:StopChannel` — stop a running * channel-assembly channel. * * Channel names are runtime parameters, so the binding is account-level and * grants `mediatailor:StopChannel` on `*`. Provide the implementation with * `Effect.provide(AWS.MediaTailor.StopChannelHttp)`. * * ### Channel Assembly * **Example:** Stop a channel * ```typescript * const stopChannel = yield* AWS.MediaTailor.StopChannel(); * * yield* stopChannel({ ChannelName: "my-channel" }); * ``` * * @binding */ export interface StopChannel extends Binding.Service Effect.Effect<(request: mediatailor.StopChannelRequest) => Effect.Effect>> { } export declare const StopChannel: StopChannel; //# sourceMappingURL=StopChannel.d.ts.map