AWS Fundamentals Logo
AWS Fundamentals
L2 Construct

Certificate

A certificate managed by AWS Certificate Manager.

Import

import { Certificate } from 'aws-cdk-lib/aws-certificatemanager';

Or use the module namespace:

import * as certificatemanager from 'aws-cdk-lib/aws-certificatemanager';
// certificatemanager.Certificate

Properties

Configuration passed to the constructor as CertificateProps.

domainNameRequired
string

Fully-qualified domain name to request a certificate for. May contain wildcards, such as ``*.domain.com``.

allowExportOptional
boolean

Enable 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

certificateNameOptional
string

The 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

keyAlgorithmOptional
KeyAlgorithm

Specifies the algorithm of the public and private key pair that your certificate uses to encrypt data.

Default: KeyAlgorithm.RSA_2048

subjectAlternativeNamesOptional
string[]

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.

transparencyLoggingEnabledOptional
boolean

Enable 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

validationOptional
CertificateValidation

How to validate this certificate.

Default: CertificateValidation.fromEmail()

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter