UNPKG

@cpmech/az-cdk

Version:
19 lines (18 loc) 576 B
import { Construct } from '@aws-cdk/core'; import { Runtime } from '@aws-cdk/aws-lambda'; export interface IWebsiteProps { domain: string; prefix?: string; skipMX?: boolean; skipVerification?: boolean; comment?: string; hostedZoneId?: string; certificateArn?: string; errorCodes?: number[]; errorRoute?: string; runtimeForVErify?: Runtime; } export declare class WebsiteConstruct extends Construct { readonly cloudfrontDistributionId: string; constructor(scope: Construct, id: string, props: IWebsiteProps); }