You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::DeviceFarm::Types::ExecutionConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ExecutionConfiguration as input to an Aws::Client method, you can use a vanilla Hash:

{
  job_timeout_minutes: 1,
  accounts_cleanup: false,
  app_packages_cleanup: false,
  video_capture: false,
  skip_app_resign: false,
}

Represents configuration information about a test run, such as the execution timeout (in minutes).

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#accounts_cleanupBoolean

True if account cleanup is enabled at the beginning of the test. Otherwise, false.

Returns:

  • (Boolean)

    True if account cleanup is enabled at the beginning of the test.

#app_packages_cleanupBoolean

True if app package cleanup is enabled at the beginning of the test. Otherwise, false.

Returns:

  • (Boolean)

    True if app package cleanup is enabled at the beginning of the test.

#job_timeout_minutesInteger

The number of minutes a test run executes before it times out.

Returns:

  • (Integer)

    The number of minutes a test run executes before it times out.

#skip_app_resignBoolean

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.

Returns:

  • (Boolean)

    When set to true, for private devices, Device Farm does not sign your app again.

#video_captureBoolean

Set to true to enable video capture. Otherwise, set to false. The default is true.

Returns:

  • (Boolean)

    Set to true to enable video capture.