aws-certificatemanager: DnsValidatedCertificate docs say that the default validation method is email #22739
Labels
@aws-cdk/aws-certificatemanager
Related to Amazon Certificate Manager
documentation
This is a problem with documentation.
effort/small
Small work item – less than a day of effort
p2
Describe the issue
Documentation for the props for
DnsValidatedCertificate
say:which is obviously wrong, because its DNS validated.
I think this is just because
interface DnsValidatedCertificateProps extends CertificateProps
, and presumably this is a reasonable option inCertificateProps
.Solutions I can think of:
Omit<>
to removevalidation
fromDnsValidatedCertificateProps
validation: never
onDnsValidatedCertificateProps
BaseCertificateProps
fromCertificateProps
that doesn't includevalidation
and haveDnsValidatedCertificateProps
extend that instead.Links
https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_certificatemanager.DnsValidatedCertificate.html#validation
The text was updated successfully, but these errors were encountered: