Module Values.SearchQuickResponsesRequestSource

Searches existing Amazon Q in Connect quick responses in an Amazon Q in Connect knowledge base.

Sourcetype nonrec t = {
  1. knowledgeBaseId : UuidOrArn.t;
    (*

    The identifier of the knowledge base. This should be a QUICK_RESPONSES type knowledge base. Can be either the ID or the ARN. URLs cannot contain the ARN.

    *)
  2. searchExpression : QuickResponseSearchExpression.t;
    (*

    The search expression for querying the quick response.

    *)
  3. nextToken : NonEmptyString.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.

    *)
  4. maxResults : MaxResults.t option;
    (*

    The maximum number of results to return per page.

    *)
  5. attributes : ContactAttributes.t option;
    (*

    The user-defined Amazon Connect contact attributes to be resolved when search results are returned.

    *)
}
Sourceval context_ : string
Sourceval make : ?nextToken:??? -> ?maxResults:??? -> ?attributes:??? -> knowledgeBaseId:UuidOrArn.t -> searchExpression:QuickResponseSearchExpression.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `Map of ([> `String of ContactAttributeKey.t ] * [> `String of ContactAttributeValue.t ]) list | `String of UuidOrArn.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `String of QuickResponseQueryValue.t ] list | `String of NonEmptyString.t ]) list ] list | `Structure of (string * [> `Enum of string | `String of NonEmptyString.t ]) list ]) list ]) 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