Struct rusoto_devicefarm::Job[][src]

pub struct Job {
    pub arn: Option<String>,
    pub counters: Option<Counters>,
    pub created: Option<f64>,
    pub device: Option<Device>,
    pub device_minutes: Option<DeviceMinutes>,
    pub instance_arn: Option<String>,
    pub message: Option<String>,
    pub name: Option<String>,
    pub result: Option<String>,
    pub started: Option<f64>,
    pub status: Option<String>,
    pub stopped: Option<f64>,
    pub type_: Option<String>,
}

Represents a device.

Fields

The job's ARN.

The job's result counters.

When the job was created.

The device (phone or tablet).

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

The Amazon Resource Name (ARN) of the instance.

A message about the job's result.

The job's name.

The job'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.

The job's start time.

The job'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 job's stop time.

The job's type.

Allowed values include the following:

  • 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 Job
[src]

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

impl Debug for Job
[src]

Formats the value using the given formatter. Read more

impl Clone for Job
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Job
[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 Job

impl Sync for Job