Module Values.NotifyRecommendationsReceivedRequestSource

Removes the specified recommendations from the specified assistant's queue of newly available recommendations. You can use this API in conjunction with GetRecommendations and a waitTimeSeconds input for long-polling behavior and avoiding duplicate recommendations.

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

    The identifier of the Amazon Q in Connect assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.

    *)
  2. sessionId : UuidOrArn.t;
    (*

    The identifier of the session. Can be either the ID or the ARN. URLs cannot contain the ARN.

    *)
  3. recommendationIds : RecommendationIdList.t;
    (*

    The identifiers of the recommendations.

    *)
}
Sourceval context_ : string
Sourceval make : assistantId:UuidOrArn.t -> sessionId:UuidOrArn.t -> recommendationIds:RecommendationIdList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of RecommendationId.t ] list | `String of UuidOrArn.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