awscdk-construct-input-switch-scheduler
Version:
AWS CDK Construct for scheduling input switch of MediaLive
14 lines (13 loc) • 514 B
TypeScript
import { Construct } from 'constructs';
import { EventBridgeSchedule } from './EventBridgeSchedule';
import { Lambda } from './Lambda';
export interface InputSwitchSchedulerProps {
readonly channelId: string;
readonly inputAttachments: string[];
readonly intervalInMinutes: number;
}
export declare class InputSwitchScheduler extends Construct {
readonly lambda: Lambda;
readonly schedule: EventBridgeSchedule;
constructor(scope: Construct, id: string, props: InputSwitchSchedulerProps);
}