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

DeviceInstance

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

Represents the device instance.

interface DeviceInstance {
arn?: string | null;
deviceArn?: string | null;
instanceProfile?: InstanceProfile | null;
labels?: string[] | null;
status?: InstanceStatus | null;
udid?: string | null;
}

§Properties

§
arn?: string | null
[src]

The Amazon Resource Name (ARN) of the device instance.

§
deviceArn?: string | null
[src]

The ARN of the device.

§
instanceProfile?: InstanceProfile | null
[src]

A object that contains information about the instance profile.

§
labels?: string[] | null
[src]

An array of strings that describe the device instance.

§
status?: InstanceStatus | null
[src]

The status of the device instance. Valid values are listed here.

§
udid?: string | null
[src]

Unique device identifier for the device instance.