Class: Aws::CloudFront::Types::ManagedCertificateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::ManagedCertificateRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudfront/types.rb
Overview
An object that represents the request for the Amazon CloudFront managed ACM certificate.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_transparency_logging_preference ⇒ String
You can opt out of certificate transparency logging by specifying the ‘disabled` option.
-
#primary_domain_name ⇒ String
The primary domain name associated with the CloudFront managed ACM certificate.
-
#validation_token_host ⇒ String
Specify how the HTTP validation token will be served when requesting the CloudFront managed ACM certificate.
Instance Attribute Details
#certificate_transparency_logging_preference ⇒ String
You can opt out of certificate transparency logging by specifying the ‘disabled` option. Opt in by specifying `enabled`. For more information, see [Certificate Transparency Logging ][1] in the *Certificate Manager User Guide*.
[1]: docs.aws.amazon.com/acm/latest/userguide/acm-concepts.html#concept-transparency
9885 9886 9887 9888 9889 9890 9891 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 9885 class ManagedCertificateRequest < Struct.new( :validation_token_host, :primary_domain_name, :certificate_transparency_logging_preference) SENSITIVE = [] include Aws::Structure end |
#primary_domain_name ⇒ String
The primary domain name associated with the CloudFront managed ACM certificate.
9885 9886 9887 9888 9889 9890 9891 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 9885 class ManagedCertificateRequest < Struct.new( :validation_token_host, :primary_domain_name, :certificate_transparency_logging_preference) SENSITIVE = [] include Aws::Structure end |
#validation_token_host ⇒ String
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.
9885 9886 9887 9888 9889 9890 9891 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 9885 class ManagedCertificateRequest < Struct.new( :validation_token_host, :primary_domain_name, :certificate_transparency_logging_preference) SENSITIVE = [] include Aws::Structure end |