A certificate managed by AWS Certificate Manager.
import { Certificate } from 'aws-cdk-lib/aws-certificatemanager';Or use the module namespace:
import * as certificatemanager from 'aws-cdk-lib/aws-certificatemanager';
// certificatemanager.CertificateConfiguration passed to the constructor as CertificateProps.
domainNameRequiredstringFully-qualified domain name to request a certificate for. May contain wildcards, such as ``*.domain.com``.
allowExportOptionalbooleanEnable or disable export of this certificate. If you issue an exportable public certificate, there is a charge at certificate issuance and again when the certificate renews. Ref: https://aws.amazon.com/certificate-manager/pricing
Default: false
certificateNameOptionalstringThe Certificate name. Since the Certificate resource doesn't support providing a physical name, the value provided here will be recorded in the `Name` tag
Default: the full, absolute path of this construct
keyAlgorithmOptionalKeyAlgorithmSpecifies the algorithm of the public and private key pair that your certificate uses to encrypt data.
Default: KeyAlgorithm.RSA_2048
subjectAlternativeNamesOptionalstring[]Alternative domain names on your certificate. Use this to register alternative domain names that represent the same site.
Default: - No additional FQDNs will be included as alternative domain names.
transparencyLoggingEnabledOptionalbooleanEnable or disable transparency logging for this certificate. Once a certificate has been logged, it cannot be removed from the log. Opting out at that point will have no effect. If you opt out of logging when you request a certificate and then choose later to opt back in, your certificate will not be logged until it is renewed. If you want the certificate to be logged immediately, we recommend that you issue a new one.
Default: true
validationOptionalCertificateValidationHow to validate this certificate.
Default: CertificateValidation.fromEmail()
Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.
Subscribe to Newsletteraws-certificatemanager