Module Values.SessionSummarySource

Summary information about the session.

Sourcetype nonrec t = {
  1. sessionId : Uuid.t option;
    (*

    The identifier of the session.

    *)
  2. sessionArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the session.

    *)
  3. assistantId : Uuid.t option;
    (*

    The identifier of the Amazon Q in Connect assistant.

    *)
  4. assistantArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the Amazon Q in Connect assistant.

    *)
}
Sourceval make : ?sessionId:??? -> ?sessionArn:??? -> ?assistantId:??? -> ?assistantArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Uuid.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