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