Interface ExecutionConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExecutionConfiguration.Builder,ExecutionConfiguration>,SdkBuilder<ExecutionConfiguration.Builder,ExecutionConfiguration>,SdkPojo
- Enclosing class:
- ExecutionConfiguration
public static interface ExecutionConfiguration.Builder extends SdkPojo, CopyableBuilder<ExecutionConfiguration.Builder,ExecutionConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExecutionConfiguration.BuilderaccountsCleanup(Boolean accountsCleanup)True if account cleanup is enabled at the beginning of the test.ExecutionConfiguration.BuilderappPackagesCleanup(Boolean appPackagesCleanup)True if app package cleanup is enabled at the beginning of the test.ExecutionConfiguration.BuilderjobTimeoutMinutes(Integer jobTimeoutMinutes)The number of minutes a test run executes before it times out.ExecutionConfiguration.BuilderskipAppResign(Boolean skipAppResign)When set totrue, for private devices, Device Farm does not sign your app again.ExecutionConfiguration.BuildervideoCapture(Boolean videoCapture)Set to true to enable video capture.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
jobTimeoutMinutes
ExecutionConfiguration.Builder jobTimeoutMinutes(Integer jobTimeoutMinutes)
The number of minutes a test run executes before it times out.
- Parameters:
jobTimeoutMinutes- The number of minutes a test run executes before it times out.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accountsCleanup
ExecutionConfiguration.Builder accountsCleanup(Boolean accountsCleanup)
True if account cleanup is enabled at the beginning of the test. Otherwise, false.
- Parameters:
accountsCleanup- True if account cleanup is enabled at the beginning of the test. Otherwise, false.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
appPackagesCleanup
ExecutionConfiguration.Builder appPackagesCleanup(Boolean appPackagesCleanup)
True if app package cleanup is enabled at the beginning of the test. Otherwise, false.
- Parameters:
appPackagesCleanup- True if app package cleanup is enabled at the beginning of the test. Otherwise, false.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
videoCapture
ExecutionConfiguration.Builder videoCapture(Boolean videoCapture)
Set to true to enable video capture. Otherwise, set to false. The default is true.
- Parameters:
videoCapture- Set to true to enable video capture. Otherwise, set to false. The default is true.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
skipAppResign
ExecutionConfiguration.Builder skipAppResign(Boolean skipAppResign)
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.
- Parameters:
skipAppResign- When set totrue, 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.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-