UNPKG

cdk-nextjs-standalone

Version:

Deploy a NextJS app to AWS using CDK and OpenNext.

27 lines (26 loc) 672 B
import type { NextjsBuild, NextjsImageOverrides } from '../'; import type { aws_lambda, aws_s3 } from 'aws-cdk-lib'; /** * OptionalNextjsImageProps */ export interface OptionalNextjsImageProps { /** * Override props for every construct. * @stability stable */ readonly overrides?: NextjsImageOverrides; /** * Override function properties. * @stability stable */ readonly lambdaOptions?: aws_lambda.FunctionOptions; /** * @stability stable */ readonly nextBuild?: NextjsBuild; /** * The S3 bucket holding application images. * @stability stable */ readonly bucket?: aws_s3.IBucket; }