Module Values.GetTestGridSessionResultSource

A session is an instance of a browser created through a RemoteWebDriver with the URL from CreateTestGridUrlResult$url. You can use the following to look up sessions: The session ARN (GetTestGridSessionRequest$sessionArn). The project ARN and a session ID (GetTestGridSessionRequest$projectArn and GetTestGridSessionRequest$sessionId).

Sourcetype nonrec t = {
  1. testGridSession : TestGridSession.t option;
    (*

    The TestGridSession that was requested.

    *)
}
Sourcetype nonrec error = [
  1. | `ArgumentException of ArgumentException.t
  2. | `InternalServiceException of InternalServiceException.t
  3. | `NotFoundException of NotFoundException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?testGridSession:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ArgumentException of ArgumentException.t | `InternalServiceException of InternalServiceException.t | `NotFoundException of NotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ArgumentException of ArgumentException.t | `InternalServiceException of InternalServiceException.t | `NotFoundException of NotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Double of Double.t | `Enum of string | `String of DeviceFarmArn.t | `Timestamp of DateTime.t ]) list ]) 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