Struct aws_sdk_devicefarm::types::ExecutionConfiguration
source · #[non_exhaustive]pub struct ExecutionConfiguration {
pub job_timeout_minutes: Option<i32>,
pub accounts_cleanup: Option<bool>,
pub app_packages_cleanup: Option<bool>,
pub video_capture: Option<bool>,
pub skip_app_resign: Option<bool>,
}Expand description
Represents configuration information about a test run, such as the execution timeout (in minutes).
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.job_timeout_minutes: Option<i32>The number of minutes a test run executes before it times out.
accounts_cleanup: Option<bool>True if account cleanup is enabled at the beginning of the test. Otherwise, false.
app_packages_cleanup: Option<bool>True if app package cleanup is enabled at the beginning of the test. Otherwise, false.
video_capture: Option<bool>Set to true to enable video capture. Otherwise, set to false. The default is true.
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.
Implementations§
source§impl ExecutionConfiguration
impl ExecutionConfiguration
sourcepub fn job_timeout_minutes(&self) -> Option<i32>
pub fn job_timeout_minutes(&self) -> Option<i32>
The number of minutes a test run executes before it times out.
sourcepub fn accounts_cleanup(&self) -> Option<bool>
pub fn accounts_cleanup(&self) -> Option<bool>
True if account cleanup is enabled at the beginning of the test. Otherwise, false.
sourcepub fn app_packages_cleanup(&self) -> Option<bool>
pub fn app_packages_cleanup(&self) -> Option<bool>
True if app package cleanup is enabled at the beginning of the test. Otherwise, false.
sourcepub fn video_capture(&self) -> Option<bool>
pub fn video_capture(&self) -> Option<bool>
Set to true to enable video capture. Otherwise, set to false. The default is true.
sourcepub fn skip_app_resign(&self) -> Option<bool>
pub fn skip_app_resign(&self) -> 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.
source§impl ExecutionConfiguration
impl ExecutionConfiguration
sourcepub fn builder() -> ExecutionConfigurationBuilder
pub fn builder() -> ExecutionConfigurationBuilder
Creates a new builder-style object to manufacture ExecutionConfiguration.
Trait Implementations§
source§impl Clone for ExecutionConfiguration
impl Clone for ExecutionConfiguration
source§fn clone(&self) -> ExecutionConfiguration
fn clone(&self) -> ExecutionConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ExecutionConfiguration
impl Debug for ExecutionConfiguration
source§impl PartialEq for ExecutionConfiguration
impl PartialEq for ExecutionConfiguration
source§fn eq(&self, other: &ExecutionConfiguration) -> bool
fn eq(&self, other: &ExecutionConfiguration) -> bool
self and other values to be equal, and is used
by ==.