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

ScheduleRunRequest

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

Represents a request to the schedule run operation.

interface ScheduleRunRequest {
appArn?: string | null;
configuration?: ScheduleRunConfiguration | null;
devicePoolArn?: string | null;
deviceSelectionConfiguration?: DeviceSelectionConfiguration | null;
executionConfiguration?: ExecutionConfiguration | null;
name?: string | null;
projectArn: string;
}

§Properties

§
appArn?: string | null
[src]

The ARN of an application package to run tests against, created with "CreateUpload". See "ListUploads".

§
configuration?: ScheduleRunConfiguration | null
[src]

Information about the settings for the run to be scheduled.

§
devicePoolArn?: string | null
[src]

The ARN of the device pool for the run to be scheduled.

§
deviceSelectionConfiguration?: DeviceSelectionConfiguration | null
[src]

The filter criteria used to dynamically select a set of devices for a test run and the maximum number of devices to be included in the run.

Either * devicePoolArn* or * deviceSelectionConfiguration* is required in a request.

§
executionConfiguration?: ExecutionConfiguration | null
[src]

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

§
name?: string | null
[src]

The name for the run to be scheduled.

§
projectArn: string
[src]

The ARN of the project for the run to be scheduled.

§

Information about the test for the run to be scheduled.