UNPKG

cdk-nextjs

Version:

Deploy Next.js apps on AWS with CDK

40 lines (39 loc) 874 B
import type { NextjsType } from '../'; import type { aws_ec2, aws_ecr_assets, aws_efs } from 'aws-cdk-lib'; /** * OptionalNextjsContainersProps */ export interface OptionalNextjsContainersProps { /** * @stability stable */ readonly relativeEntrypointPath?: string; /** * @stability stable */ readonly nextjsType?: NextjsType; /** * @stability stable */ readonly fileSystem?: aws_efs.FileSystem; /** * @stability stable */ readonly dockerImageAsset?: aws_ecr_assets.DockerImageAsset; /** * @stability stable */ readonly buildId?: string; /** * @stability stable */ readonly vpc?: aws_ec2.IVpc; /** * @stability stable */ readonly healthCheckPath?: string; /** * @stability stable */ readonly accessPoint?: aws_efs.AccessPoint; }