Module Values_0.SearchIndexRequestSource

The query search index. Requires permission to access the SearchIndex action.

Sourcetype nonrec t = {
  1. indexName : IndexName.t option;
    (*

    The search index name.

    *)
  2. queryString : QueryString.t;
    (*

    The search query string. For more information about the search query syntax, see Query syntax.

    *)
  3. nextToken : NextToken.t option;
    (*

    The token used to get the next set of results, or null if there are no additional results.

    *)
  4. 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.

    *)
  5. queryVersion : QueryVersion.t option;
    (*

    The query version.

    *)
}
Sourceval context_ : string
Sourceval make : ?indexName:??? -> ?nextToken:??? -> ?maxResults:??? -> ?queryVersion:??? -> queryString:QueryString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of SearchQueryMaxResults.t | `String of IndexName.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