Module Values.StartQAppSessionInputSource

Starts a new session for an Amazon Q App, allowing inputs to be provided and the app to be run. Each Q App session will be condensed into a single conversation in the web experience.

Sourcetype nonrec t = {
  1. instanceId : InstanceId.t;
    (*

    The unique identifier of the Amazon Q Business application environment instance.

    *)
  2. appId : UUID.t;
    (*

    The unique identifier of the Q App to start a session for.

    *)
  3. appVersion : AppVersion.t;
    (*

    The version of the Q App to use for the session.

    *)
  4. initialValues : CardValueList.t option;
    (*

    Optional initial input values to provide for the Q App session.

    *)
  5. sessionId : String_.t option;
    (*

    The unique identifier of the a Q App session.

    *)
  6. tags : TagMap.t option;
    (*

    Optional tags to associate with the new Q App session.

    *)
}
Sourceval context_ : string
Sourceval make : ?initialValues:??? -> ?sessionId:??? -> ?tags:??? -> instanceId:InstanceId.t -> appId:UUID.t -> appVersion:AppVersion.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of AppVersion.t | `List of [> `Structure of (string * [> `String of UUID.t | `Structure of (string * [> `Enum of string | `String of UUID.t ]) list ]) list ] list | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of InstanceId.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