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

InstanceProfile

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

Represents the instance profile.

interface InstanceProfile {
arn?: string | null;
description?: string | null;
excludeAppPackagesFromCleanup?: string[] | null;
name?: string | null;
packageCleanup?: boolean | null;
rebootAfterUse?: boolean | null;
}

§Properties

§
arn?: string | null
[src]

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

§
description?: string | null
[src]

The description of the instance profile.

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

An array of strings containing the list of app packages that should not be cleaned up from the device after a test run completes.

The list of packages is considered only if you set packageCleanup to true.

§
name?: string | null
[src]

The name of the instance profile.

§
packageCleanup?: boolean | null
[src]

When set to true, Device Farm removes app packages after a test run. The default value is false for private devices.

§
rebootAfterUse?: boolean | null
[src]

When set to true, Device Farm reboots the instance after a test run. The default value is true.