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>,
}

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.

Trait Implementations

impl Default for ExecutionConfiguration
[src]

[src]

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

impl Debug for ExecutionConfiguration
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ExecutionConfiguration
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations