Module Values.UpdateQAppOutputSource

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

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

    The unique identifier of the updated Q App.

    *)
  2. appArn : AppArn.t option;
    (*

    The Amazon Resource Name (ARN) of the updated Q App.

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

    The new title of the updated Q App.

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

    The new description of the updated Q App.

    *)
  5. initialPrompt : InitialPrompt.t option;
    (*

    The initial prompt for the updated Q App.

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

    The new version of the updated Q App.

    *)
  7. status : AppStatus.t option;
    (*

    The status of the updated Q App.

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

    The date and time the Q App was originally created.

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

    The user who originally created the Q App.

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

    The date and time the Q App was last updated.

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

    The user who last updated the Q App.

    *)
  12. requiredCapabilities : AppRequiredCapabilities.t option;
    (*

    The capabilities required for the updated Q App.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ContentTooLargeException of ContentTooLargeException.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 : ?appId:??? -> ?appArn:??? -> ?title:??? -> ?description:??? -> ?initialPrompt:??? -> ?appVersion:??? -> ?status:??? -> ?createdAt:??? -> ?createdBy:??? -> ?updatedAt:??? -> ?updatedBy:??? -> ?requiredCapabilities:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ContentTooLargeException of ContentTooLargeException.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 | `ContentTooLargeException of ContentTooLargeException.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 * [> `Enum of string | `Integer of AppVersion.t | `List of [> `Enum of string ] 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