[][src]Struct rusoto_devicefarm::ScheduleRunTest

pub struct ScheduleRunTest {
    pub filter: Option<String>,
    pub parameters: Option<HashMap<String, String>>,
    pub test_package_arn: Option<String>,
    pub test_spec_arn: Option<String>,
    pub type_: String,
}

Represents test settings. This data structure is passed in as the "test" parameter to ScheduleRun. For an example of the JSON request syntax, see ScheduleRun.

Fields

filter: Option<String>

The test's filter.

parameters: Option<HashMap<String, String>>

The test's parameters, such as test framework parameters and fixture settings. Parameters are represented by name-value pairs of strings.

For all tests:

For Calabash tests:

For Appium tests (all types):

For Fuzz tests (Android only):

For Explorer tests:

For Instrumentation:

For XCTest and XCTestUI:

For UIAutomator:

test_package_arn: Option<String>

The ARN of the uploaded test that will be run.

test_spec_arn: Option<String>

The ARN of the YAML-formatted test specification.

type_: String

The test's type.

Must be one of the following values:

Trait Implementations

impl PartialEq<ScheduleRunTest> for ScheduleRunTest[src]

impl Default for ScheduleRunTest[src]

impl Clone for ScheduleRunTest[src]

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

Performs copy-assignment from source. Read more

impl Debug for ScheduleRunTest[src]

impl Serialize for ScheduleRunTest[src]

Auto Trait Implementations

impl Send for ScheduleRunTest

impl Sync for ScheduleRunTest

Blanket Implementations

impl<T> From for T[src]

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, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self