Module Values.UpdateLibraryItemOutputSource

Updates the library item for an Amazon Q App.

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

    The unique identifier of the updated 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 updated library item.

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

    The new status of the updated library item.

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

    The date and time the library item was originally created.

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

    The user who originally 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.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConflictException of ConflictException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `UnauthorizedException of UnauthorizedException.t
  7. | `ValidationException of ValidationException.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?libraryItemId:??? -> ?appId:??? -> ?appVersion:??? -> ?categories:??? -> ?status:??? -> ?createdAt:??? -> ?createdBy:??? -> ?updatedAt:??? -> ?updatedBy:??? -> ?ratingCount:??? -> ?isRatedByUser:??? -> ?userCount:??? -> ?isVerified:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.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