UNPKG

@activatedio/cdktf-google

Version:
14 lines (13 loc) 518 B
import { Construct } from 'constructs'; import * as google from '@cdktf/provider-google'; interface IVerifiedCertificateProps { zoneProject?: string; zoneName: string; name: string; } declare class VerifiedCertificate extends Construct { readonly certificate: google.certificateManagerCertificate.CertificateManagerCertificate; readonly domains: string[]; constructor(scope: Construct, id: string, props: IVerifiedCertificateProps); } export { VerifiedCertificate, IVerifiedCertificateProps };