Values.NotifyRecommendationsReceivedRequestSourceRemoves 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.
type nonrec t = {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.
*)sessionId : UuidOrArn.t;The identifier of the session. Can be either the ID or the ARN. URLs cannot contain the ARN.
*)recommendationIds : RecommendationIdList.t;The identifiers of the recommendations.
*)}val make :
assistantId:UuidOrArn.t ->
sessionId:UuidOrArn.t ->
recommendationIds:RecommendationIdList.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of [> `String of RecommendationId.t ] list
| `String of UuidOrArn.t ])
list ]