DescribeSchedule
Source:
src/AWS/MediaLive/DescribeSchedule.ts
Runtime binding for medialive:DescribeSchedule.
Reads the bound Channel’s schedule — the queue of pending and
recent actions created with BatchUpdateSchedule (one page per
call; pass NextToken from the previous response to continue) — e.g.
so a playout dashboard can show upcoming input switches and ad breaks.
The channel id is injected from the binding. Provide the implementation
with Effect.provide(AWS.MediaLive.DescribeScheduleHttp).
Driving the Channel Schedule
Section titled “Driving the Channel Schedule”// init — bind the operation to the channelconst describeSchedule = yield* AWS.MediaLive.DescribeSchedule(channel);
// runtimeconst { ScheduleActions } = yield* describeSchedule();