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

UpdateInstanceProfileRequest

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

§Properties

§
arn: string
[src]

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

§
description?: string | null
[src]

The updated description for 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 is over.

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

§
name?: string | null
[src]

The updated name for your instance profile.

§
packageCleanup?: boolean | null
[src]

The updated choice for whether you want to specify package cleanup. The default value is false for private devices.

§
rebootAfterUse?: boolean | null
[src]

The updated choice for whether you want to reboot the device after use. The default value is true.