Interface CfnDistributionTenant.ManagedCertificateRequestProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDistributionTenant.ManagedCertificateRequestProperty.Jsii$Proxy
- Enclosing class:
CfnDistributionTenant
@Stability(Stable)
public static interface CfnDistributionTenant.ManagedCertificateRequestProperty
extends software.amazon.jsii.JsiiSerializable
An object that represents the request for the Amazon CloudFront managed ACM certificate.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.cloudfront.*; ManagedCertificateRequestProperty managedCertificateRequestProperty = ManagedCertificateRequestProperty.builder() .certificateTransparencyLoggingPreference("certificateTransparencyLoggingPreference") .primaryDomainName("primaryDomainName") .validationTokenHost("validationTokenHost") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDistributionTenant.ManagedCertificateRequestProperty
static final class
An implementation forCfnDistributionTenant.ManagedCertificateRequestProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
You can opt out of certificate transparency logging by specifying thedisabled
option.default String
The primary domain name associated with the CloudFront managed ACM certificate.default String
Specify how the HTTP validation token will be served when requesting the CloudFront managed ACM certificate.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCertificateTransparencyLoggingPreference
You can opt out of certificate transparency logging by specifying thedisabled
option.Opt in by specifying
enabled
. For more information, see Certificate Transparency Logging in the AWS Certificate Manager User Guide .- See Also:
-
getPrimaryDomainName
The primary domain name associated with the CloudFront managed ACM certificate.- See Also:
-
getValidationTokenHost
Specify how the HTTP validation token will be served when requesting the CloudFront managed ACM certificate.- For
cloudfront
, CloudFront will automatically serve the validation token. Choose this mode if you can point the domain's DNS to CloudFront immediately. - For
self-hosted
, you serve the validation token from your existing infrastructure. Choose this mode when you need to maintain current traffic flow while your certificate is being issued. You can place the validation token at the well-known path on your existing web server, wait for ACM to validate and issue the certificate, and then update your DNS to point to CloudFront.
- See Also:
- For
-
builder
-