Module Values.GetQAppOutputSource

Retrieves the full details of an Q App, including its definition specifying the cards and flow.

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

    The unique identifier of the Q App.

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

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

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

    The title of the Q App.

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

    The description of the Q App.

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

    The initial prompt displayed when the Q App is started.

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

    The version of the Q App.

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

    The status of the Q App.

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

    The date and time the Q App was created.

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

    The user who 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 to run the Q App, such as file upload or third-party integrations.

    *)
  13. appDefinition : AppDefinition.t option;
    (*

    The full definition of the Q App, specifying the cards and flow.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `UnauthorizedException of UnauthorizedException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?appId:??? -> ?appArn:??? -> ?title:??? -> ?description:??? -> ?initialPrompt:??? -> ?appVersion:??? -> ?status:??? -> ?createdAt:??? -> ?createdBy:??? -> ?updatedAt:??? -> ?updatedBy:??? -> ?requiredCapabilities:??? -> ?appDefinition:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.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 | `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 | `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `Structure of (string * Awso.Botodata.value) list ]) list ] list | `String of String_.t ]) list | `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