UNPKG

@cpmech/az-cdk

Version:
12 lines (11 loc) 378 B
import { Construct } from '@aws-cdk/core'; import { Runtime } from '@aws-cdk/aws-lambda'; export interface IVerifyDomainProps { hostedZoneId: string; domain: string; certificateArn?: string; runtime?: Runtime; } export declare class VerifyDomainConstruct extends Construct { constructor(scope: Construct, id: string, props: IVerifyDomainProps); }