@activatedio/cdktf-google
Version:
TypeScript library for CDKTF for google
14 lines (13 loc) • 518 B
TypeScript
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 };