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

AccountSettings

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

A container for account-level settings in AWS Device Farm.

interface AccountSettings {
awsAccountNumber?: string | null;
defaultJobTimeoutMinutes?: number | null;
maxJobTimeoutMinutes?: number | null;
maxSlots?: {
[key: string]: number | null | undefined;
}
| null;
skipAppResign?: boolean | null;
trialMinutes?: TrialMinutes | null;
unmeteredDevices?: [key in DevicePlatform]: number | null | undefined | null;
unmeteredRemoteAccessDevices?: [key in DevicePlatform]: number | null | undefined | null;
}

§Properties

§
awsAccountNumber?: string | null
[src]

The AWS account number specified in the AccountSettings container.

§
defaultJobTimeoutMinutes?: number | null
[src]

The default number of minutes (at the account level) a test run executes before it times out. The default value is 150 minutes.

§
maxJobTimeoutMinutes?: number | null
[src]

The maximum number of minutes a test run executes before it times out.

§
maxSlots?: {
[key: string]: number | null | undefined;
}
| null
[src]

The maximum number of device slots that the AWS account can purchase. Each maximum is expressed as an offering-id:number pair, where the offering-id represents one of the IDs returned by the ListOfferings command.

§
skipAppResign?: boolean | null
[src]

When set to true, for private devices, Device Farm does not sign your app again. For public devices, Device Farm always signs your apps again.

For more information about how Device Farm re-signs your apps, see Do you modify my app? in the AWS Device Farm FAQs.

§
trialMinutes?: TrialMinutes | null
[src]

Information about an AWS account's usage of free trial device minutes.

§
unmeteredDevices?: [key in DevicePlatform]: number | null | undefined | null
[src]

Returns the unmetered devices you have purchased or want to purchase.

§
unmeteredRemoteAccessDevices?: [key in DevicePlatform]: number | null | undefined | null
[src]

Returns the unmetered remote access devices you have purchased or want to purchase.