@cpmech/az-cdk
Version:
AmaZon AWS-CDK tools
19 lines (18 loc) • 576 B
TypeScript
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);
}