Module Values.GetEvidenceFoldersByAssessmentRequestSource

Gets the evidence folders from a specified assessment in Audit Manager.

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

    The unique identifier for the assessment.

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

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

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?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