cdk-nextjs
Version:
Deploy Next.js apps on AWS with CDK
14 lines (13 loc) • 476 B
TypeScript
import * as lambda from 'aws-cdk-lib/aws-lambda';
import { Construct } from 'constructs';
/**
* Props for AssetsDeploymentFunction
*/
export interface AssetsDeploymentFunctionProps extends lambda.FunctionOptions {
}
/**
* An AWS Lambda function which executes src/lambdas/assets-deployment/assets-deployment.
*/
export declare class AssetsDeploymentFunction extends lambda.Function {
constructor(scope: Construct, id: string, props?: AssetsDeploymentFunctionProps);
}