Values_0.SearchIndexRequestSourceThe query search index. Requires permission to access the SearchIndex action.
type nonrec t = {indexName : IndexName.t option;The search index name.
*)queryString : QueryString.t;The search query string. For more information about the search query syntax, see Query syntax.
*)nextToken : NextToken.t option;The token used to get the next set of results, or null if there are no additional results.
*)maxResults : SearchQueryMaxResults.t option;The maximum number of results to return per page at one time. This maximum number cannot exceed 100. The response might contain fewer results but will never contain more. You can use nextToken to retrieve the next set of results until nextToken returns NULL.
*)queryVersion : QueryVersion.t option;The query version.
*)}val make :
?indexName:??? ->
?nextToken:??? ->
?maxResults:??? ->
?queryVersion:??? ->
queryString:QueryString.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Integer of SearchQueryMaxResults.t | `String of IndexName.t ])
list ]