awscdk-construct-input-switch-scheduler
Version:
AWS CDK Construct for scheduling input switch of MediaLive
11 lines (10 loc) • 362 B
TypeScript
import { NodejsFunction } from 'aws-cdk-lib/aws-lambda-nodejs';
import { Construct } from 'constructs';
export interface LambdaProps {
readonly channelId: string;
readonly inputAttachments: string[];
}
export declare class Lambda extends Construct {
readonly func: NodejsFunction;
constructor(scope: Construct, id: string, props: LambdaProps);
}