Values.GetCaseAuditEventsRequestSourceReturns the audit history about a specific case if it exists.
type nonrec t = {caseId : CaseId.t;A unique identifier of the case.
*)domainId : DomainId.t;The unique identifier of the Cases domain.
*)maxResults : GetCaseAuditEventsRequestMaxResultsInteger.t option;The maximum number of audit events to return. When no value is provided, 25 is the default.
*)nextToken : NextToken.t option;The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
*)}val make :
?maxResults:??? ->
?nextToken:??? ->
caseId:CaseId.t ->
domainId:DomainId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Integer of GetCaseAuditEventsRequestMaxResultsInteger.t
| `String of CaseId.t ])
list ]