Module Values.UpdateQAppInputSource

Updates an existing Amazon Q App, allowing modifications to its title, description, and definition.

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 update.

    *)
  3. title : Title.t option;
    (*

    The new title for the Q App.

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

    The new description for the Q App.

    *)
  5. appDefinition : AppDefinitionInput.t option;
    (*

    The new definition specifying the cards and flow for the Q App.

    *)
}
Sourceval context_ : string
Sourceval make : ?title:??? -> ?description:??? -> ?appDefinition:??? -> instanceId:InstanceId.t -> appId:UUID.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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