account_settings
Creates, updates, deletes, gets or lists an account_settings resource.
Overview
| Name | account_settings |
| Type | Resource |
| Id | aws.devicefarm.account_settings |
Fields
The following fields are returned by SELECT queries:
- get_account_settings
| Name | Datatype | Description |
|---|---|---|
aws_account_number | string | The AWS account number specified in the AccountSettings container. |
default_job_timeout_minutes | integer | The 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_minutes | integer | The maximum number of minutes a test run executes before it times out. |
max_slots | object | 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. |
skip_app_resign | boolean | 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. |
trial_minutes | object | Information about an AWS account's usage of free trial device minutes. |
unmetered_devices | object | Returns the unmetered devices you have purchased or want to purchase. |
unmetered_remote_access_devices | object | Returns the unmetered remote access devices you have purchased or want to purchase. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_account_settings | select | region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_account_settings
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
;