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
impl StructuralPartialEq for ExecutionConfiguration
Auto Trait Implementations§
impl Freeze for ExecutionConfiguration
impl RefUnwindSafe for ExecutionConfiguration
impl Send for ExecutionConfiguration
impl Sync for ExecutionConfiguration
impl Unpin for ExecutionConfiguration
impl UnwindSafe for ExecutionConfiguration
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more