Module Values.CreateQAppInputSource

Creates a new Amazon Q App based on the provided definition. The Q App definition specifies the cards and flow of the Q App. This operation also calculates the dependencies between the cards by inspecting the references in the prompts.

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

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

    *)
  2. title : Title.t;
    (*

    The title of the new Q App.

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

    The description of the new Q App.

    *)
  4. appDefinition : AppDefinitionInput.t;
    (*

    The definition of the new Q App, specifying the cards and flow.

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

    Optional tags to associate with the new Q App.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?tags:??? -> instanceId:InstanceId.t -> title:Title.t -> appDefinition:AppDefinitionInput.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of InstanceId.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Structure of (string * Awso.Botodata.value) list ]) list ] list | `String of InitialPrompt.t ]) 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