@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-05-10T17:05:58.555Z") @Stability(value=Stable) public interface PrivateCertificateProps extends software.amazon.jsii.JsiiSerializable
Example:
import software.amazon.awscdk.services.acmpca.*;
PrivateCertificate.Builder.create(this, "PrivateCertificate")
.domainName("test.example.com")
.subjectAlternativeNames(List.of("cool.example.com", "test.example.net")) // optional
.certificateAuthority(CertificateAuthority.fromCertificateAuthorityArn(this, "CA", "arn:aws:acm-pca:us-east-1:123456789012:certificate-authority/023077d8-2bfa-4eb0-8f22-05c96deade77"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
PrivateCertificateProps.Builder
A builder for
PrivateCertificateProps |
static class |
PrivateCertificateProps.Jsii$Proxy
An implementation for
PrivateCertificateProps |
| Modifier and Type | Method and Description |
|---|---|
static PrivateCertificateProps.Builder |
builder() |
ICertificateAuthority |
getCertificateAuthority()
Private certificate authority (CA) that will be used to issue the certificate.
|
String |
getDomainName()
Fully-qualified domain name to request a private certificate for.
|
default List<String> |
getSubjectAlternativeNames()
Alternative domain names on your private certificate.
|
@Stability(value=Stable) @NotNull ICertificateAuthority getCertificateAuthority()
@Stability(value=Stable) @NotNull String getDomainName()
May contain wildcards, such as *.domain.com.
@Stability(value=Stable) @Nullable default List<String> getSubjectAlternativeNames()
Use this to register alternative domain names that represent the same site.
Default: - No additional FQDNs will be included as alternative domain names.
@Stability(value=Stable) static PrivateCertificateProps.Builder builder()
PrivateCertificateProps.Builder of PrivateCertificatePropsCopyright © 2023. All rights reserved.