UNPKG

cdk-nextjs

Version:

Deploy Next.js apps on AWS with CDK

14 lines (13 loc) 440 B
import * as lambda from 'aws-cdk-lib/aws-lambda'; import { Construct } from 'constructs'; /** * Props for PostDeployFunction */ export interface PostDeployFunctionProps extends lambda.FunctionOptions { } /** * An AWS Lambda function which executes src/lambdas/post-deploy/post-deploy. */ export declare class PostDeployFunction extends lambda.Function { constructor(scope: Construct, id: string, props?: PostDeployFunctionProps); }