Module Values.GetUpgradeHistoryRequestSource

Container for the request parameters to the GetUpgradeHistory operation.

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

    The name of an existing domain.

    *)
  2. maxResults : MaxResults.t option;
    (*

    An optional parameter that specifies the maximum number of results to return. You can use nextToken to get the next page of results.

    *)
  3. nextToken : NextToken.t option;
    (*

    If your initial GetUpgradeHistory operation returns a nextToken, you can include the returned nextToken in subsequent GetUpgradeHistory operations, which returns results in the next page.

    *)
}
Sourceval context_ : string
Sourceval make : ?maxResults:??? -> ?nextToken:??? -> domainName:DomainName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.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