UNPKG

cdk-nextjs-standalone

Version:

Deploy a NextJS app to AWS using CDK and OpenNext.

25 lines (24 loc) 677 B
/** * OptionalHostedZoneProviderProps */ export interface OptionalHostedZoneProviderProps { /** * Specifies the ID of the VPC associated with a private hosted zone. * If a VPC ID is provided and privateZone is false, no results will be returned * and an error will be raised * @default - No VPC ID * @stability stable */ readonly vpcId?: string; /** * Whether the zone that is being looked up is a private hosted zone. * @default false * @stability stable */ readonly privateZone?: boolean; /** * The zone domain e.g. example.com. * @stability stable */ readonly domainName?: string; }