Values.SearchCasesRequestSourceSearches for cases within their associated Cases domain. Search results are returned as a paginated list of abridged case documents. For customer_id you must provide the full customer profile ARN in this format: arn:aws:profile:your AWS Region:your AWS account ID:domains/profiles domain name/profiles/profile ID.
type nonrec t = {domainId : DomainId.t;The unique identifier of the Cases domain.
*)maxResults : SearchCasesRequestMaxResultsInteger.t option;The maximum number of cases 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.
*)searchTerm : SearchCasesRequestSearchTermString.t option;A word or phrase used to perform a quick search.
*)filter : CaseFilter.t option;A list of filter objects.
*)sorts : SearchCasesRequestSortsList.t option;A list of sorts where each sort specifies a field and their sort order to be applied to the results.
*)fields : SearchCasesRequestFieldsList.t option;The list of field identifiers to be returned as part of the response.
*)}val make :
?maxResults:??? ->
?nextToken:??? ->
?searchTerm:??? ->
?filter:??? ->
?sorts:??? ->
?fields:??? ->
domainId:DomainId.t ->
unit ->
t