Struct rusoto_devicefarm::ExecutionConfiguration[][src]

pub struct ExecutionConfiguration {
    pub accounts_cleanup: Option<bool>,
    pub app_packages_cleanup: Option<bool>,
    pub job_timeout_minutes: Option<i64>,
    pub skip_app_resign: Option<bool>,
}

Represents configuration information about a test run, such as the execution timeout (in minutes).

Fields

True if account cleanup is enabled at the beginning of the test; otherwise, false.

True if app package cleanup is enabled at the beginning of the test; otherwise, false.

The number of minutes a test run will execute before it times out.

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.

Trait Implementations

impl Default for ExecutionConfiguration
[src]

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

impl Debug for ExecutionConfiguration
[src]

Formats the value using the given formatter. Read more

impl Clone for ExecutionConfiguration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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