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 classA builder forCfnDistributionTenant.ManagedCertificateRequestPropertystatic final classAn implementation forCfnDistributionTenant.ManagedCertificateRequestProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringYou can opt out of certificate transparency logging by specifying thedisabledoption.default StringThe primary domain name associated with the CloudFront managed ACM certificate.default StringSpecify 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 thedisabledoption.Opt in by specifying
enabled. For more information, see Certificate Transparency Logging in the 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
-