Module Values.CreateLibraryItemInputSource

Creates a new library item for an Amazon Q App, allowing it to be discovered and used by other allowed users.

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 Amazon Q App to publish to the library.

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

    The version of the Amazon Q App to publish to the library.

    *)
  4. categories : CategoryIdList.t;
    (*

    The categories to associate with the library item for easier discovery.

    *)
}
Sourceval context_ : string
Sourceval make : instanceId:InstanceId.t -> appId:UUID.t -> appVersion:AppVersion.t -> categories:CategoryIdList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of AppVersion.t | `List of [> `String of UUID.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