Module Values.DnsConfigurationSource

The DNS configuration for your domain names.

Sourcetype nonrec t = {
  1. domain : String_.t option;
    (*

    The domain name that you're verifying.

    *)
  2. status : DnsConfigurationStatus.t option;
    (*

    The status of your domain name. valid-configuration: The domain name is correctly configured and points to the correct routing endpoint of the connection group. invalid-configuration: There is either a missing DNS record or the DNS record exists but it's using an incorrect routing endpoint. Update the DNS record to point to the correct routing endpoint. unknown-configuration: CloudFront can't validate your DNS configuration. This status can appear if CloudFront can't verify the DNS record, or the DNS lookup request failed or timed out.

    *)
  3. reason : String_.t option;
    (*

    Explains the status of the DNS configuration.

    *)
}
Sourceval make : ?domain:??? -> ?status:??? -> ?reason:??? -> 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