Interface CertificateProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
DnsValidatedCertificateProps
- All Known Implementing Classes:
CertificateProps.Jsii$Proxy
,DnsValidatedCertificateProps.Jsii$Proxy
Example:
HostedZone exampleCom = HostedZone.Builder.create(this, "ExampleCom") .zoneName("example.com") .build(); HostedZone exampleNet = HostedZone.Builder.create(this, "ExampleNet") .zoneName("example.net") .build(); Certificate cert = Certificate.Builder.create(this, "Certificate") .domainName("test.example.com") .subjectAlternativeNames(List.of("cool.example.com", "test.example.net")) .validation(CertificateValidation.fromDnsMultiZone(Map.of( "test.example.com", exampleCom, "cool.example.com", exampleCom, "test.example.net", exampleNet))) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCertificateProps
static final class
An implementation forCertificateProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CertificateProps.Builder
builder()
default String
The Certificate name.Fully-qualified domain name to request a certificate for.default KeyAlgorithm
Specifies the algorithm of the public and private key pair that your certificate uses to encrypt data.Alternative domain names on your certificate.default Boolean
Enable or disable transparency logging for this certificate.default CertificateValidation
How to validate this certificate.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDomainName
Fully-qualified domain name to request a certificate for.May contain wildcards, such as
*.domain.com
. -
getCertificateName
The Certificate name.Since the Certificate resource doesn't support providing a physical name, the value provided here will be recorded in the
Name
tagDefault: the full, absolute path of this construct
-
getKeyAlgorithm
Specifies the algorithm of the public and private key pair that your certificate uses to encrypt data.Default: KeyAlgorithm.RSA_2048
- See Also:
-
getSubjectAlternativeNames
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.
-
getTransparencyLoggingEnabled
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
- See Also:
-
getValidation
How to validate this certificate.Default: CertificateValidation.fromEmail()
-
builder
- Returns:
- a
CertificateProps.Builder
ofCertificateProps
-