Values.CreateSessionRequestSourceCreates a session. A session is a contextual container used for generating recommendations. Amazon Connect creates a new Wisdom session for each contact on which Wisdom is enabled.
type nonrec t = {assistantId : UuidOrArn.t;The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
*)clientToken : ClientToken.t option;A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
*)description : Description.t option;The description.
*)name : Name.t;The name of the session.
*)}val make :
?clientToken:??? ->
?description:??? ->
?tags:??? ->
assistantId:UuidOrArn.t ->
name:Name.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of UuidOrArn.t ])
list ]