[][src]Struct rusoto_devicefarm::Run

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 device_selection_result: Option<DeviceSelectionResult>,
    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 test_spec_arn: Option<String>,
    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

app_upload: Option<String>

An app to upload or that has been uploaded.

arn: Option<String>

The run's ARN.

billing_method: Option<String>

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

completed_jobs: Option<i64>

The total number of completed jobs.

counters: Option<Counters>

The run's result counters.

created: Option<f64>

When the run was created.

customer_artifact_paths: Option<CustomerArtifactPaths>

Output CustomerArtifactPaths object for the test run.

device_minutes: Option<DeviceMinutes>

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

device_pool_arn: Option<String>

The ARN of the device pool for the run.

device_selection_result: Option<DeviceSelectionResult>

The results of a device filter used to select the devices for a test run.

event_count: Option<i64>

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

job_timeout_minutes: Option<i64>

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

locale: Option<String>

Information about the locale that is used for the run.

location: Option<Location>

Information about the location that is used for the run.

message: Option<String>

A message about the run's result.

name: Option<String>

The run's name.

network_profile: Option<NetworkProfile>

The network profile being used for a test run.

parsing_result_url: Option<String>

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.

platform: Option<String>

The run's platform.

Allowed values include:

  • ANDROID: The Android platform.

  • IOS: The iOS platform.

radios: Option<Radios>

Information about the radio states for the run.

result: Option<String>

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.

result_code: Option<String>

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.

seed: Option<i64>

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.

skip_app_resign: Option<bool>

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.

started: Option<f64>

The run's start time.

status: Option<String>

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.

stopped: Option<f64>

The run's stop time.

test_spec_arn: Option<String>

The ARN of the YAML-formatted test specification for the run.

total_jobs: Option<i64>

The total number of jobs for the run.

type_: Option<String>

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.

  • APPIUMNODE: The Appium Node.js type.

  • APPIUMRUBY: The Appium Ruby 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.

  • APPIUMWEBNODE: The Appium Node.js type for web apps.

  • APPIUMWEBRUBY: The Appium Ruby 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.

web_url: Option<String>

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

Trait Implementations

impl PartialEq<Run> for Run[src]

impl Clone for Run[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for Run[src]

impl Debug for Run[src]

impl<'de> Deserialize<'de> for Run[src]

Auto Trait Implementations

impl Send for Run

impl Sync for Run

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self