Struct rusoto_devicefarm::Run [] [src]

pub struct Run {
    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 message: Option<String>,
    pub name: Option<String>,
    pub network_profile: Option<NetworkProfile>,
    pub parsing_result_url: Option<String>,
    pub platform: Option<String>,
    pub result: Option<String>,
    pub result_code: Option<String>,
    pub started: Option<f64>,
    pub status: Option<String>,
    pub stopped: Option<f64>,
    pub total_jobs: Option<i64>,
    pub type_: Option<String>,
}

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

Fields

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.

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.

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.

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.

Trait Implementations

impl Default for Run
[src]

[src]

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

impl Debug for Run
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Run
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Run

impl Sync for Run