Module Values.GetDomainDetailResponseSource

The GetDomainDetail response includes the following elements.

Sourcetype nonrec t = {
  1. domainName : DomainName.t option;
    (*

    The name of a domain.

    *)
  2. nameservers : NameserverList.t option;
    (*

    The name servers of the domain.

    *)
  3. autoRenew : Boolean.t option;
    (*

    Specifies whether the domain registration is set to renew automatically.

    *)
  4. adminContact : ContactDetail.t option;
    (*

    Provides details about the domain administrative contact.

    *)
  5. registrantContact : ContactDetail.t option;
    (*

    Provides details about the domain registrant.

    *)
  6. techContact : ContactDetail.t option;
    (*

    Provides details about the domain technical contact.

    *)
  7. adminPrivacy : Boolean.t option;
    (*

    Specifies whether contact information is concealed from WHOIS queries. If the value is true, WHOIS ("who is") queries return contact information either for Amazon Registrar or for our registrar associate, Gandi. If the value is false, WHOIS queries return the information that you entered for the admin contact.

    *)
  8. registrantPrivacy : Boolean.t option;
    (*

    Specifies whether contact information is concealed from WHOIS queries. If the value is true, WHOIS ("who is") queries return contact information either for Amazon Registrar or for our registrar associate, Gandi. If the value is false, WHOIS queries return the information that you entered for the registrant contact (domain owner).

    *)
  9. techPrivacy : Boolean.t option;
    (*

    Specifies whether contact information is concealed from WHOIS queries. If the value is true, WHOIS ("who is") queries return contact information either for Amazon Registrar or for our registrar associate, Gandi. If the value is false, WHOIS queries return the information that you entered for the technical contact.

    *)
  10. registrarName : RegistrarName.t option;
    (*

    Name of the registrar of the domain as identified in the registry.

    *)
  11. whoIsServer : RegistrarWhoIsServer.t option;
    (*

    The fully qualified name of the WHOIS server that can answer the WHOIS query for the domain.

    *)
  12. registrarUrl : RegistrarUrl.t option;
    (*

    Web address of the registrar.

    *)
  13. abuseContactEmail : Email.t option;
    (*

    Email address to contact to report incorrect contact information for a domain, to report that the domain is being used to send spam, to report that someone is cybersquatting on a domain name, or report some other type of abuse.

    *)
  14. abuseContactPhone : ContactNumber.t option;
    (*

    Phone number for reporting abuse.

    *)
  15. registryDomainId : RegistryDomainId.t option;
    (*

    Reserved for future use.

    *)
  16. creationDate : Timestamp.t option;
    (*

    The date when the domain was created as found in the response to a WHOIS query. The date and time is in Unix time format and Coordinated Universal time (UTC).

    *)
  17. updatedDate : Timestamp.t option;
    (*

    The last updated date of the domain as found in the response to a WHOIS query. The date and time is in Unix time format and Coordinated Universal time (UTC).

    *)
  18. expirationDate : Timestamp.t option;
    (*

    The date when the registration for the domain is set to expire. The date and time is in Unix time format and Coordinated Universal time (UTC).

    *)
  19. reseller : Reseller.t option;
    (*

    Reserved for future use.

    *)
  20. dnsSec : DNSSec.t option;
    (*

    Deprecated.

    *)
  21. statusList : DomainStatusList.t option;
    (*

    An array of domain name status codes, also known as Extensible Provisioning Protocol (EPP) status codes. ICANN, the organization that maintains a central database of domain names, has developed a set of domain name status codes that tell you the status of a variety of operations on a domain name, for example, registering a domain name, transferring a domain name to another registrar, renewing the registration for a domain name, and so on. All registrars use this same set of status codes. For a current list of domain name status codes and an explanation of what each code means, go to the ICANN website and search for epp status codes. (Search on the ICANN website; web searches sometimes return an old version of the document.)

    *)
  22. dnssecKeys : DnssecKeyList.t option;
    (*

    A complex type that contains information about the DNSSEC configuration.

    *)
  23. billingContact : ContactDetail.t option;
    (*

    Provides details about the domain billing contact.

    *)
  24. billingPrivacy : Boolean.t option;
    (*

    Specifies whether contact information is concealed from WHOIS queries. If the value is true, WHOIS ("who is") queries return contact information either for Amazon Registrar or for our registrar associate, Gandi. If the value is false, WHOIS queries return the information that you entered for the billing contact.

    *)
}
Sourcetype nonrec error = [
  1. | `InvalidInput of InvalidInput.t
  2. | `UnsupportedTLD of UnsupportedTLD.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?domainName:??? -> ?nameservers:??? -> ?autoRenew:??? -> ?adminContact:??? -> ?registrantContact:??? -> ?techContact:??? -> ?adminPrivacy:??? -> ?registrantPrivacy:??? -> ?techPrivacy:??? -> ?registrarName:??? -> ?whoIsServer:??? -> ?registrarUrl:??? -> ?abuseContactEmail:??? -> ?abuseContactPhone:??? -> ?registryDomainId:??? -> ?creationDate:??? -> ?updatedDate:??? -> ?expirationDate:??? -> ?reseller:??? -> ?dnsSec:??? -> ?statusList:??? -> ?dnssecKeys:??? -> ?billingContact:??? -> ?billingPrivacy:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InvalidInput of InvalidInput.t | `Unknown_operation_error of string * string option | `UnsupportedTLD of UnsupportedTLD.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InvalidInput of InvalidInput.t | `Unknown_operation_error of string * string option | `UnsupportedTLD of UnsupportedTLD.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of DomainStatus.t | `Structure of (string * [> `Integer of NullableInteger.t | `List of [> `String of GlueIp.t ] list | `String of HostName.t ]) list ] list | `String of DomainName.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of ExtraParamValue.t ]) list ] list | `String of ContactName.t ]) list | `Timestamp of Timestamp.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