Skip to main content

account_settings

Creates, updates, deletes, gets or lists an account_settings resource.

Overview

Nameaccount_settings
TypeResource
Idaws.devicefarm.account_settings

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
aws_account_numberstringThe AWS account number specified in the AccountSettings container.
default_job_timeout_minutesintegerThe default number of minutes (at the account level) a test run executes before it times out. The default value is 150 minutes.
max_job_timeout_minutesintegerThe maximum number of minutes a test run executes before it times out.
max_slotsobjectThe 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.
skip_app_resignbooleanWhen 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.
trial_minutesobjectInformation about an AWS account's usage of free trial device minutes.
unmetered_devicesobjectReturns the unmetered devices you have purchased or want to purchase.
unmetered_remote_access_devicesobjectReturns the unmetered remote access devices you have purchased or want to purchase.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_account_settingsselectregionReturns the number of unmetered iOS or unmetered Android devices that have been purchased by the account.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Returns the number of unmetered iOS or unmetered Android devices that have been purchased by the account.

SELECT
aws_account_number,
default_job_timeout_minutes,
max_job_timeout_minutes,
max_slots,
skip_app_resign,
trial_minutes,
unmetered_devices,
unmetered_remote_access_devices
FROM aws.devicefarm.account_settings
WHERE region = '{{ region }}' -- required
;