awscdk-construct-scte-scheduler
Version:
AWS CDK Construct for scheduling SCTE-35 events using the MediaLive schedule API
11 lines (10 loc) • 365 B
TypeScript
import { NodejsFunction } from 'aws-cdk-lib/aws-lambda-nodejs';
import { Construct } from 'constructs';
export interface LambdaProps {
readonly channelId: string;
readonly scteDurationInSeconds: number;
}
export declare class Lambda extends Construct {
readonly func: NodejsFunction;
constructor(scope: Construct, id: string, props: LambdaProps);
}