Module Values.GetSystemTemplateRevisionsRequestSource

Gets revisions made to the specified system template. Only the previous 100 revisions are stored. If the system has been deprecated, this action will return the revisions that occurred before its deprecation. This action won't work with systems that have been deleted.

Sourcetype nonrec t = {
  1. id : Urn.t;
    (*

    The ID of the system template. The ID should be in the following format. urn:tdm:REGION/ACCOUNT ID/default:system:SYSTEMNAME

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

    The string that specifies the next page of results. Use this when you're paginating results.

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

    The maximum number of results to return in the response.

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