Struct aws_sdk_devicefarm::model::ExecutionConfiguration
source · [−]#[non_exhaustive]pub struct ExecutionConfiguration { /* private fields */ }Expand description
Represents configuration information about a test run, such as the execution timeout (in minutes).
Implementations
sourceimpl 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.
sourceimpl ExecutionConfiguration
impl ExecutionConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ExecutionConfiguration.
Trait Implementations
sourceimpl Clone for ExecutionConfiguration
impl Clone for ExecutionConfiguration
sourcefn clone(&self) -> ExecutionConfiguration
fn clone(&self) -> ExecutionConfiguration
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ExecutionConfiguration
impl Debug for ExecutionConfiguration
sourceimpl PartialEq<ExecutionConfiguration> for ExecutionConfiguration
impl PartialEq<ExecutionConfiguration> for ExecutionConfiguration
sourcefn eq(&self, other: &ExecutionConfiguration) -> bool
fn eq(&self, other: &ExecutionConfiguration) -> bool
impl StructuralPartialEq for ExecutionConfiguration
Auto Trait Implementations
impl RefUnwindSafe for ExecutionConfiguration
impl Send for ExecutionConfiguration
impl Sync for ExecutionConfiguration
impl Unpin for ExecutionConfiguration
impl UnwindSafe for ExecutionConfiguration
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more