Module Values.ManagedCertificateRequestSource

An object that represents the request for the Amazon CloudFront managed ACM certificate.

Sourcetype nonrec t = {
  1. validationTokenHost : ValidationTokenHost.t;
    (*

    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.

    *)
  2. primaryDomainName : String_.t option;
    (*

    The primary domain name associated with the CloudFront managed ACM certificate.

    *)
  3. certificateTransparencyLoggingPreference : CertificateTransparencyLoggingPreference.t option;
    (*

    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 in the Certificate Manager User Guide.

    *)
}
Sourceval context_ : string
Sourceval make : ?primaryDomainName:??? -> ?certificateTransparencyLoggingPreference:??? -> validationTokenHost:ValidationTokenHost.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t