Module Values.ScheduleRunRequestSource

Represents a request to the schedule run operation.

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

    The ARN of the project for the run to be scheduled.

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

    The ARN of an application package to run tests against, created with CreateUpload. See ListUploads.

    *)
  3. devicePoolArn : AmazonResourceName.t option;
    (*

    The ARN of the device pool for the run to be scheduled.

    *)
  4. deviceSelectionConfiguration : DeviceSelectionConfiguration.t option;
    (*

    The filter criteria used to dynamically select a set of devices for a test run and the maximum number of devices to be included in the run. Either devicePoolArn or deviceSelectionConfiguration is required in a request.

    *)
  5. name : Name.t option;
    (*

    The name for the run to be scheduled.

    *)
  6. test : ScheduleRunTest.t;
    (*

    Information about the test for the run to be scheduled.

    *)
  7. configuration : ScheduleRunConfiguration.t option;
    (*

    Information about the settings for the run to be scheduled.

    *)
  8. executionConfiguration : ExecutionConfiguration.t option;
    (*

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

    *)
}
Sourceval context_ : string
Sourceval make : ?appArn:??? -> ?devicePoolArn:??? -> ?deviceSelectionConfiguration:??? -> ?name:??? -> ?configuration:??? -> ?executionConfiguration:??? -> projectArn:AmazonResourceName.t -> test:ScheduleRunTest.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AmazonResourceName.t | `Structure of (string * [> `Boolean of AccountsCleanup.t | `Enum of string | `Integer of Integer.t | `List of [> `String of AmazonResourceName.t | `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of EnvironmentVariableName.t ]) list ] list | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) 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 ]) 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