Values.RenewDomainRequestSourceA RenewDomain request includes the number of years that you want to renew for and the current expiration year.
type nonrec t = {domainName : DomainName.t;The name of the domain that you want to renew.
*)durationInYears : DurationInYears.t option;The number of years that you want to renew the domain for. The maximum number of years depends on the top-level domain. For the range of valid values for your domain, see Domains that You Can Register with Amazon Route 53 in the Amazon Route 53 Developer Guide. Default: 1
*)currentExpiryYear : CurrentExpiryYear.t;The year when the registration for the domain is set to expire. This value must match the current expiration date for the domain.
*)}val make :
?durationInYears:??? ->
domainName:DomainName.t ->
currentExpiryYear:CurrentExpiryYear.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Integer of DurationInYears.t | `String of DomainName.t ])
list ]