[][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, and so on.

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.

If you have unmetered device slots, you must set this to unmetered to use them. Otherwise, the run is counted toward metered device minutes.

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 executes 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 an 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

  • IOS

radios: Option<Radios>

Information about the radio states for the run.

result: Option<String>

The run's result.

Allowed values include:

  • PENDING

  • PASSED

  • WARNED

  • FAILED

  • SKIPPED

  • ERRORED

  • STOPPED

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 does not sign your app again. For public devices, Device Farm always signs your apps again.

For more information about how Device Farm re-signs your apps, 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

  • PENDINGCONCURRENCY

  • PENDINGDEVICE

  • PROCESSING

  • SCHEDULING

  • PREPARING

  • RUNNING

  • COMPLETED

  • STOPPING

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

  • BUILTINEXPLORER

    For Android, an app explorer that traverses an Android app, interacting with it and capturing screenshots at the same time.

  • APPIUMJAVAJUNIT

  • APPIUMJAVATESTNG

  • APPIUMPYTHON

  • APPIUMNODE

  • APPIUMRUBY

  • APPIUMWEBJAVAJUNIT

  • APPIUMWEBJAVATESTNG

  • APPIUMWEBPYTHON

  • APPIUMWEBNODE

  • APPIUMWEBRUBY

  • CALABASH

  • INSTRUMENTATION

  • UIAUTOMATION

  • UIAUTOMATOR

  • XCTEST

  • XCTESTUI

web_url: Option<String>

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

Trait Implementations

impl Clone for Run[src]

impl Debug for Run[src]

impl Default for Run[src]

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

impl PartialEq<Run> for Run[src]

impl StructuralPartialEq for Run[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.