Module Values.LibraryItemMemberSource

A library item is a snapshot of an Amazon Q App that can be published so the users in their Amazon Q Apps library can discover it, clone it, and run it.

Sourcetype nonrec t = {
  1. libraryItemId : UUID.t option;
    (*

    The unique identifier of the library item.

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

    The unique identifier of the Q App associated with the library item.

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

    The version of the Q App associated with the library item.

    *)
  4. categories : CategoryList.t option;
    (*

    The categories associated with the library item.

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

    The status of the library item.

    *)
  6. createdAt : QAppsTimestamp.t option;
    (*

    The date and time the library item was created.

    *)
  7. createdBy : String_.t option;
    (*

    The user who created the library item.

    *)
  8. updatedAt : QAppsTimestamp.t option;
    (*

    The date and time the library item was last updated.

    *)
  9. updatedBy : String_.t option;
    (*

    The user who last updated the library item.

    *)
  10. ratingCount : Integer.t option;
    (*

    The number of ratings the library item has received.

    *)
  11. isRatedByUser : Boolean.t option;
    (*

    Whether the current user has rated the library item.

    *)
  12. userCount : Integer.t option;
    (*

    The number of users who have the associated Q App.

    *)
  13. isVerified : Boolean.t option;
    (*

    Indicates whether the library item has been verified.

    *)
}
Sourceval make : ?libraryItemId:??? -> ?appId:??? -> ?appVersion:??? -> ?categories:??? -> ?status:??? -> ?createdAt:??? -> ?createdBy:??? -> ?updatedAt:??? -> ?updatedBy:??? -> ?ratingCount:??? -> ?isRatedByUser:??? -> ?userCount:??? -> ?isVerified:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of AppVersion.t | `List of [> `Structure of (string * [> `Integer of Integer.t | `String of UUID.t ]) list ] list | `String of UUID.t | `Timestamp of QAppsTimestamp.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