Module Values.GetTestGridSessionRequestSource

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. projectArn : DeviceFarmArn.t option;
    (*

    The ARN for the project that this session belongs to. See CreateTestGridProject and ListTestGridProjects.

    *)
  2. sessionId : ResourceId.t option;
    (*

    An ID associated with this session.

    *)
  3. sessionArn : DeviceFarmArn.t option;
    (*

    An ARN that uniquely identifies a TestGridSession.

    *)
}
Sourceval make : ?projectArn:??? -> ?sessionId:??? -> ?sessionArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DeviceFarmArn.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