Module Values.SessionDataSource

Information about the session.

Sourcetype nonrec t = {
  1. sessionArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the session.

    *)
  2. sessionId : Uuid.t option;
    (*

    The identifier of the session.

    *)
  3. name : Name.t option;
    (*

    The name of the session.

    *)
  4. description : Description.t option;
    (*

    The description of the session.

    *)
  5. tags : Tags.t option;
    (*

    The tags used to organize, track, or control access for this resource.

    *)
  6. integrationConfiguration : SessionIntegrationConfiguration.t option;
    (*

    The configuration information for the session integration.

    *)
  7. tagFilter : TagFilter.t option;
    (*

    An object that can be used to specify Tag conditions.

    *)
  8. aiAgentConfiguration : AIAgentConfigurationMap.t option;
    (*

    The configuration of the AI Agents (mapped by AI Agent Type to AI Agent version) that should be used by Amazon Q in Connect for this Session.

    *)
  9. origin : Origin.t option;
    (*

    The origin of the Session to be listed. SYSTEM for a default Session created by Amazon Q in Connect or CUSTOMER for a Session created by calling CreateSession API.

    *)
  10. orchestratorConfigurationList : OrchestratorConfigurationList.t option;
    (*

    The list of orchestrator configurations for the session.

    *)
}
Sourceval make : ?sessionArn:??? -> ?sessionId:??? -> ?name:??? -> ?description:??? -> ?tags:??? -> ?integrationConfiguration:??? -> ?tagFilter:??? -> ?aiAgentConfiguration:??? -> ?origin:??? -> ?orchestratorConfigurationList:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of UuidOrArnOrEitherWithQualifier.t ]) list ] list | `Map of ([> `Enum of string | `String of TagKey.t ] * [> `String of TagValue.t | `Structure of (string * [> `String of UuidWithQualifier.t ]) list ]) list | `String of Arn.t | `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of TagKey.t | `Structure of (string * [> `String of TagKey.t ]) list ]) list ] list | `String of GenericArn.t | `Structure of (string * [> `String of TagKey.t ]) list ]) list ]) 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