Module Values.TestGridSessionSource

A TestGridSession is a single instance of a browser launched from the URL provided by a call to CreateTestGridUrl.

Sourcetype nonrec t = {
  1. arn : DeviceFarmArn.t option;
    (*

    The ARN of the session.

    *)
  2. status : TestGridSessionStatus.t option;
    (*

    The state of the session.

    *)
  3. created : DateTime.t option;
    (*

    The time that the session was started.

    *)
  4. ended : DateTime.t option;
    (*

    The time the session ended.

    *)
  5. billingMinutes : Double.t option;
    (*

    The number of billed minutes that were used for this session.

    *)
  6. seleniumProperties : String_.t option;
    (*

    A JSON object of options and parameters passed to the Selenium WebDriver.

    *)
}
Sourceval make : ?arn:??? -> ?status:??? -> ?created:??? -> ?ended:??? -> ?billingMinutes:??? -> ?seleniumProperties:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `Enum of string | `String of DeviceFarmArn.t | `Timestamp of DateTime.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