Struct rusoto_devicefarm::Run[][src]

pub struct Run {
    pub app_upload: Option<String>,
    pub arn: Option<String>,
    pub billing_method: Option<String>,
    pub completed_jobs: Option<i64>,
    pub counters: Option<Counters>,
    pub created: Option<f64>,
    pub customer_artifact_paths: Option<CustomerArtifactPaths>,
    pub device_minutes: Option<DeviceMinutes>,
    pub device_pool_arn: Option<String>,
    pub event_count: Option<i64>,
    pub job_timeout_minutes: Option<i64>,
    pub locale: Option<String>,
    pub location: Option<Location>,
    pub message: Option<String>,
    pub name: Option<String>,
    pub network_profile: Option<NetworkProfile>,
    pub parsing_result_url: Option<String>,
    pub platform: Option<String>,
    pub radios: Option<Radios>,
    pub result: Option<String>,
    pub result_code: Option<String>,
    pub seed: Option<i64>,
    pub skip_app_resign: Option<bool>,
    pub started: Option<f64>,
    pub status: Option<String>,
    pub stopped: Option<f64>,
    pub total_jobs: Option<i64>,
    pub type_: Option<String>,
    pub web_url: Option<String>,
}

Represents a test run on a set of devices with a given app package, test parameters, etc.

Fields

An app to upload or that has been uploaded.

The run's ARN.

Specifies the billing method for a test run: metered or unmetered. If the parameter is not specified, the default value is metered.

The total number of completed jobs.

The run's result counters.

When the run was created.

Output CustomerArtifactPaths object for the test run.

Represents the total (metered or unmetered) minutes used by the test run.

The ARN of the device pool for the run.

For fuzz tests, this is the number of events, between 1 and 10000, that the UI fuzz test should perform.

The number of minutes the job will execute before it times out.

Information about the locale that is used for the run.

Information about the location that is used for the run.

A message about the run's result.

The run's name.

The network profile being used for a test run.

Read-only URL for an object in S3 bucket where you can get the parsing results of the test package. If the test package doesn't parse, the reason why it doesn't parse appears in the file that this URL points to.

The run's platform.

Allowed values include:

  • ANDROID: The Android platform.

  • IOS: The iOS platform.

Information about the radio states for the run.

The run's result.

Allowed values include:

  • PENDING: A pending condition.

  • PASSED: A passing condition.

  • WARNED: A warning condition.

  • FAILED: A failed condition.

  • SKIPPED: A skipped condition.

  • ERRORED: An error condition.

  • STOPPED: A stopped condition.

Supporting field for the result field. Set only if result is SKIPPED. PARSING_FAILED if the result is skipped because of test package parsing failure.

For fuzz tests, this is a seed to use for randomizing the UI fuzz test. Using the same seed value between tests ensures identical event sequences.

When set to true, for private devices, Device Farm will not sign your app again. For public devices, Device Farm always signs your apps again and this parameter has no effect.

For more information about how Device Farm re-signs your app(s), see Do you modify my app? in the AWS Device Farm FAQs.

The run's start time.

The run's status.

Allowed values include:

  • PENDING: A pending status.

  • PENDINGCONCURRENCY: A pending concurrency status.

  • PENDINGDEVICE: A pending device status.

  • PROCESSING: A processing status.

  • SCHEDULING: A scheduling status.

  • PREPARING: A preparing status.

  • RUNNING: A running status.

  • COMPLETED: A completed status.

  • STOPPING: A stopping status.

The run's stop time.

The total number of jobs for the run.

The run's type.

Must be one of the following values:

  • BUILTINFUZZ: The built-in fuzz type.

  • BUILTINEXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.

  • APPIUMJAVAJUNIT: The Appium Java JUnit type.

  • APPIUMJAVATESTNG: The Appium Java TestNG type.

  • APPIUMPYTHON: The Appium Python type.

  • APPIUMWEBJAVAJUNIT: The Appium Java JUnit type for Web apps.

  • APPIUMWEBJAVATESTNG: The Appium Java TestNG type for Web apps.

  • APPIUMWEBPYTHON: The Appium Python type for Web apps.

  • CALABASH: The Calabash type.

  • INSTRUMENTATION: The Instrumentation type.

  • UIAUTOMATION: The uiautomation type.

  • UIAUTOMATOR: The uiautomator type.

  • XCTEST: The XCode test type.

  • XCTESTUI: The XCode UI test type.

The Device Farm console URL for the recording of the run.

Trait Implementations

impl Default for Run
[src]

Returns the "default value" for a type. Read more

impl Debug for Run
[src]

Formats the value using the given formatter. Read more

impl Clone for Run
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Run
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for Run

impl Sync for Run