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

DevicePool

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

Represents a collection of device types.

interface DevicePool {
arn?: string | null;
description?: string | null;
maxDevices?: number | null;
name?: string | null;
rules?: Rule[] | null;
type?: DevicePoolType | null;
}

§Properties

§
arn?: string | null
[src]

The device pool's ARN.

§
description?: string | null
[src]

The device pool's description.

§
maxDevices?: number | null
[src]

The number of devices that Device Farm can add to your device pool. Device Farm adds devices that are available and meet the criteria that you assign for the rules parameter. Depending on how many devices meet these constraints, your device pool might contain fewer devices than the value for this parameter.

By specifying the maximum number of devices, you can control the costs that you incur by running tests.

§
name?: string | null
[src]

The device pool's name.

§
rules?: Rule[] | null
[src]

Information about the device pool's rules.

§
type?: DevicePoolType | null
[src]

The device pool's type.

Allowed values include:

  • CURATED: A device pool that is created and managed by AWS Device Farm.
  • PRIVATE: A device pool that is created and managed by the device pool developer.