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

ListDevicePoolsRequest

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

Represents the result of a list device pools request.

interface ListDevicePoolsRequest {
arn: string;
nextToken?: string | null;
type?: DevicePoolType | null;
}

§Properties

§
arn: string
[src]

The project ARN.

§
nextToken?: string | null
[src]

An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.

§
type?: DevicePoolType | null
[src]

The device pools' 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.