Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ExecutionConfiguration

import type { ExecutionConfiguration } from "https://aws-api.deno.dev/v0.4/services/devicefarm.ts?docs=full";

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

interface ExecutionConfiguration {
accountsCleanup?: boolean | null;
appPackagesCleanup?: boolean | null;
jobTimeoutMinutes?: number | null;
skipAppResign?: boolean | null;
videoCapture?: boolean | null;
}

§Properties

§
accountsCleanup?: boolean | null
[src]

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

§
appPackagesCleanup?: boolean | null
[src]

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

§
jobTimeoutMinutes?: number | null
[src]

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

§
skipAppResign?: boolean | null
[src]

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.

§
videoCapture?: boolean | null
[src]

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