@daysmart/cdk-certificate
Version:
You should explore the contents of this project. It demonstrates a CDK Construct Library that includes a construct (`CdkCertificate`) which contains an Amazon SQS queue that is subscribed to an Amazon SNS topic.
13 lines (12 loc) • 384 B
TypeScript
import { Construct } from 'constructs';
export interface CdkCertificateProps {
companyDomainName: string;
stage: string;
project: string;
companyHostedZoneId: string;
projectDomainName?: string;
projectHostedZoneId?: string;
}
export declare class CdkCertificate extends Construct {
constructor(scope: Construct, id: string, props: CdkCertificateProps);
}