Values.CreateQAppOutputSourceCreates a new Amazon Q App based on the provided definition. The Q App definition specifies the cards and flow of the Q App. This operation also calculates the dependencies between the cards by inspecting the references in the prompts.
type nonrec t = {appId : UUID.t option;The unique identifier of the new Q App.
*)appArn : AppArn.t option;The Amazon Resource Name (ARN) of the new Q App.
*)title : Title.t option;The title of the new Q App.
*)description : Description.t option;The description of the new Q App.
*)initialPrompt : InitialPrompt.t option;The initial prompt displayed when the Q App is started.
*)appVersion : AppVersion.t option;The version of the new Q App.
*)status : AppStatus.t option;The status of the new Q App, such as "Created".
*)createdAt : QAppsTimestamp.t option;The date and time the Q App was created.
*)createdBy : String_.t option;The user who created the Q App.
*)updatedAt : QAppsTimestamp.t option;The date and time the Q App was last updated.
*)updatedBy : String_.t option;The user who last updated the Q App.
*)requiredCapabilities : AppRequiredCapabilities.t option;The capabilities required to run the Q App, such as file upload or third-party integrations.
*)}type nonrec error = [ | `AccessDeniedException of AccessDeniedException.t| `ConflictException of ConflictException.t| `ContentTooLargeException of ContentTooLargeException.t| `InternalServerException of InternalServerException.t| `ServiceQuotaExceededException of ServiceQuotaExceededException.t| `ThrottlingException of ThrottlingException.t| `ValidationException of ValidationException.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `AccessDeniedException of AccessDeniedException.t
| `ConflictException of ConflictException.t
| `ContentTooLargeException of ContentTooLargeException.t
| `InternalServerException of InternalServerException.t
| `ServiceQuotaExceededException of ServiceQuotaExceededException.t
| `ThrottlingException of ThrottlingException.t
| `UnauthorizedException of UnauthorizedException.t
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `AccessDeniedException of AccessDeniedException.t
| `ConflictException of ConflictException.t
| `ContentTooLargeException of ContentTooLargeException.t
| `InternalServerException of InternalServerException.t
| `ServiceQuotaExceededException of ServiceQuotaExceededException.t
| `ThrottlingException of ThrottlingException.t
| `UnauthorizedException of UnauthorizedException.t
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val 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 ]