UNPKG

awscdk-construct-input-switch-scheduler

Version:
11 lines (10 loc) 362 B
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); }