Values.SearchRelevantContentRequestSourceSearches for relevant content in a Amazon Q Business application based on a query. This operation takes a search query text, the Amazon Q Business application identifier, and optional filters (such as content source and maximum results) as input. It returns a list of relevant content items, where each item includes the content text, the unique document identifier, the document title, the document URI, any relevant document attributes, and score attributes indicating the confidence level of the relevance.
type nonrec t = {applicationId : ApplicationId.t;The unique identifier of the Amazon Q Business application to search.
*)queryText : QueryText.t;The text to search for.
*)contentSource : ContentSource.t;The source of content to search in.
*)attributeFilter : AttributeFilter.t option;maxResults : MaxResults.t option;The maximum number of results to return.
*)nextToken : NextToken.t option;The token for the next set of results. (You received this token from a previous call.)
*)}val make :
?attributeFilter:??? ->
?maxResults:??? ->
?nextToken:??? ->
applicationId:ApplicationId.t ->
queryText:QueryText.t ->
contentSource:ContentSource.t ->
unit ->
t