Module Values.RenewDomainRequestSource

A RenewDomain request includes the number of years that you want to renew for and the current expiration year.

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

    The name of the domain that you want to renew.

    *)
  2. 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

    *)
  3. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?durationInYears:??? -> domainName:DomainName.t -> currentExpiryYear:CurrentExpiryYear.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of DurationInYears.t | `String of DomainName.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