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

DeviceSelectionResult

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

Contains the run results requested by the device selection configuration and how many devices were returned. For an example of the JSON response syntax, see "ScheduleRun".

interface DeviceSelectionResult {
filters?: DeviceFilter[] | null;
matchedDevicesCount?: number | null;
maxDevices?: number | null;
}

§Properties

§
filters?: DeviceFilter[] | null
[src]

The filters in a device selection result.

§
matchedDevicesCount?: number | null
[src]

The number of devices that matched the device filter selection criteria.

§
maxDevices?: number | null
[src]

The maximum number of devices to be selected by a device filter and included in a test run.