Values.UpdateDomainContactPrivacyRequestSourceThe UpdateDomainContactPrivacy request includes the following elements.
type nonrec t = {domainName : DomainName.t;The name of the domain that you want to update the privacy setting for.
*)adminPrivacy : Boolean.t option;Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS ("who is") queries return contact information either for Amazon Registrar or for our registrar associate, Gandi. If you specify false, WHOIS queries return the information that you entered for the admin contact. You must specify the same privacy setting for the administrative, billing, registrant, and technical contacts.
*)registrantPrivacy : Boolean.t option;Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS ("who is") queries return contact information either for Amazon Registrar or for our registrar associate, Gandi. If you specify false, WHOIS queries return the information that you entered for the registrant contact (domain owner). You must specify the same privacy setting for the administrative, billing, registrant, and technical contacts.
*)techPrivacy : Boolean.t option;Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS ("who is") queries return contact information either for Amazon Registrar or for our registrar associate, Gandi. If you specify false, WHOIS queries return the information that you entered for the technical contact. You must specify the same privacy setting for the administrative, billing, registrant, and technical contacts.
*)billingPrivacy : Boolean.t option;Whether you want to conceal contact information from WHOIS queries. If you specify true, WHOIS ("who is") queries return contact information either for Amazon Registrar or for our registrar associate, Gandi. If you specify false, WHOIS queries return the information that you entered for the billing contact. You must specify the same privacy setting for the administrative, billing, registrant, and technical contacts.
*)}val make :
?adminPrivacy:??? ->
?registrantPrivacy:??? ->
?techPrivacy:??? ->
?billingPrivacy:??? ->
domainName:DomainName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Boolean of Boolean.t | `String of DomainName.t ]) list ]