Module Values.ExecutionConfigurationSource

Represents configuration information about a test run, such as the execution timeout (in minutes).

Sourcetype nonrec t = {
  1. jobTimeoutMinutes : JobTimeoutMinutes.t option;
    (*

    The number of minutes a test run executes before it times out.

    *)
  2. accountsCleanup : AccountsCleanup.t option;
    (*

    True if account cleanup is enabled at the beginning of the test. Otherwise, false.

    *)
  3. appPackagesCleanup : AppPackagesCleanup.t option;
    (*

    True if app package cleanup is enabled at the beginning of the test. Otherwise, false.

    *)
  4. videoCapture : VideoCapture.t option;
    (*

    Set to true to enable video capture. Otherwise, set to false. The default is true.

    *)
  5. skipAppResign : SkipAppResign.t option;
    (*

    When set to true, for private devices, Device Farm does not sign your app again. For public devices, Device Farm always signs your apps again. For more information about how Device Farm re-signs your apps, see Do you modify my app? in the AWS Device Farm FAQs.

    *)
}
Sourceval make : ?jobTimeoutMinutes:??? -> ?accountsCleanup:??? -> ?appPackagesCleanup:??? -> ?videoCapture:??? -> ?skipAppResign:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of AccountsCleanup.t | `Integer of JobTimeoutMinutes.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