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

CreateInstanceProfileRequest

import type { CreateInstanceProfileRequest } from "https://aws-api.deno.dev/v0.4/services/devicefarm.ts?docs=full";
interface CreateInstanceProfileRequest {
description?: string | null;
excludeAppPackagesFromCleanup?: string[] | null;
name: string;
packageCleanup?: boolean | null;
rebootAfterUse?: boolean | null;
}

§Properties

§
description?: string | null
[src]

The description of your instance profile.

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

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

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

§
name: string
[src]

The name of your 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.