Module Values.ScheduleRunConfigurationSource

Represents the settings for a run. Includes things like location, radio states, auxiliary apps, and network profiles.

Sourcetype nonrec t = {
  1. extraDataPackageArn : AmazonResourceName.t option;
    (*

    The ARN of the extra data for the run. The extra data is a .zip file that AWS Device Farm extracts to external data for Android or the app's sandbox for iOS.

    *)
  2. networkProfileArn : AmazonResourceName.t option;
    (*

    Reserved for internal use.

    *)
  3. locale : String_.t option;
    (*

    Information about the locale that is used for the run.

    *)
  4. location : Location.t option;
    (*

    Information about the location that is used for the run.

    *)
  5. vpceConfigurationArns : AmazonResourceNames.t option;
    (*

    An array of ARNs for your VPC endpoint configurations.

    *)
  6. deviceProxy : DeviceProxy.t option;
    (*

    The device proxy to be configured on the device for the run.

    *)
  7. customerArtifactPaths : CustomerArtifactPaths.t option;
    (*

    Input CustomerArtifactPaths object for the scheduled run configuration.

    *)
  8. radios : Radios.t option;
    (*

    Information about the radio states for the run.

    *)
  9. auxiliaryApps : AmazonResourceNames.t option;
    (*

    A list of upload ARNs for app packages to be installed with your app.

    *)
  10. billingMethod : BillingMethod.t option;
    (*

    Specifies the billing method for a test run: metered or unmetered. If the parameter is not specified, the default value is metered. If you have purchased unmetered device slots, you must set this parameter to unmetered to make use of them. Otherwise, your run counts against your metered time.

    *)
  11. environmentVariables : EnvironmentVariables.t option;
    (*

    Environment variables associated with the run.

    *)
  12. executionRoleArn : AmazonRoleResourceName.t option;
    (*

    An IAM role to be assumed by the test host for the run.

    *)
}
Sourceval make : ?extraDataPackageArn:??? -> ?networkProfileArn:??? -> ?locale:??? -> ?location:??? -> ?vpceConfigurationArns:??? -> ?deviceProxy:??? -> ?customerArtifactPaths:??? -> ?radios:??? -> ?auxiliaryApps:??? -> ?billingMethod:??? -> ?environmentVariables:??? -> ?executionRoleArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of AmazonResourceName.t | `Structure of (string * [> `String of EnvironmentVariableName.t ]) list ] list | `String of AmazonResourceName.t | `Structure of (string * [> `Boolean of Boolean.t | `Double of Double.t | `Integer of DeviceProxyPort.t | `List of [> `String of String_.t ] list | `String of DeviceProxyHost.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