Module Values.UpdateSessionDataRequestSource

Updates the data stored on an Amazon Q in Connect Session.

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. namespace : SessionDataNamespace.t option;
    (*

    The namespace into which the session data is stored. Supported namespaces are: Custom

    *)
  4. data : RuntimeSessionDataList.t;
    (*

    The data stored on the Amazon Q in Connect Session.

    *)
}
Sourceval context_ : string
Sourceval make : ?namespace:??? -> assistantId:UuidOrArn.t -> sessionId:UuidOrArn.t -> data:RuntimeSessionDataList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of NonEmptySensitiveString.t | `Structure of (string * [> `String of NonEmptySensitiveString.t ]) list ]) list ] 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