Module Values.GetQAppSessionOutputSource

Retrieves the current state and results for an active session of an Amazon Q App.

Sourcetype nonrec t = {
  1. sessionId : String_.t option;
    (*

    The unique identifier of the Q App session.

    *)
  2. sessionArn : String_.t option;
    (*

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

    *)
  3. sessionName : SessionName.t option;
    (*

    The name of the Q App session.

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

    The version of the Q App used for the session.

    *)
  5. latestPublishedAppVersion : AppVersion.t option;
    (*

    The latest published version of the Q App used for the session.

    *)
  6. status : ExecutionStatus.t option;
    (*

    The current status of the Q App session.

    *)
  7. cardStatus : CardStatusMap.t option;
    (*

    The current status for each card in the Q App session.

    *)
  8. userIsHost : Boolean.t option;
    (*

    Indicates whether the current user is the owner of the Q App data collection session.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ServiceQuotaExceededException of ServiceQuotaExceededException.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 : ?sessionId:??? -> ?sessionArn:??? -> ?sessionName:??? -> ?appVersion:??? -> ?latestPublishedAppVersion:??? -> ?status:??? -> ?cardStatus:??? -> ?userIsHost:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.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 | `ServiceQuotaExceededException of ServiceQuotaExceededException.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 | `Enum of string | `Integer of AppVersion.t | `Map of ([> `String of UUID.t ] * [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of UUID.t | `Structure of 'a list | `Timestamp of QAppsTimestamp.t ]) list ] list | `String of String_.t ]) list ]) list | `String of String_.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