UNPKG

awscdk-construct-input-switch-scheduler

Version:
14 lines (13 loc) 514 B
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); }