Module Values.GetChangeLogsRequestSource

Gets a list of changelogs from Audit Manager.

Sourcetype nonrec t = {
  1. assessmentId : UUID.t;
    (*

    The unique identifier for the assessment.

    *)
  2. controlSetId : ControlSetId.t option;
    (*

    The unique identifier for the control set.

    *)
  3. controlId : UUID.t option;
    (*

    The unique identifier for the control.

    *)
  4. nextToken : Token.t option;
    (*

    The pagination token that's used to fetch the next set of results.

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

    Represents the maximum number of results on a page or for an API request call.

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