Skip to content

aws.devicefarm.get_account_settings

Example SQL Queries

SELECT * FROM
aws.devicefarm.get_account_settings;

Description

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

Table Definition

Column NameColumn Data Type
_aws_profile Input Column

The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role.

STRUCT(
"type" VARCHAR,
"name" VARCHAR,
"account_id" VARCHAR,
"via_profile_name" VARCHAR,
"assumed_role_arn" VARCHAR,
"organization" STRUCT(
"account_name" VARCHAR,
"id" VARCHAR,
"tags" STRUCT(
"key" VARCHAR,
"value" VARCHAR
)[],
"master_account" STRUCT(
"id" VARCHAR,
"email" VARCHAR
),
"parents" STRUCT(
"type" VARCHAR,
"id" VARCHAR,
"name" VARCHAR,
"tags" STRUCT(
"key" VARCHAR,
"value" VARCHAR
)[]
)[]
)
)
Show child fields
_aws_profile.account_id

The AWS account id

_aws_profile.assumed_role_arn

The ARN of the assumed role

_aws_profile.name

The unique name of the profile.

_aws_profile.organization

Information about this profile's membership in the AWS organization.

Show child fields
_aws_profile.organization.account_name

The name of account speciifed by the organization

_aws_profile.organization.id

The organization id

_aws_profile.organization.master_account
Show child fields
_aws_profile.organization.master_account.email

The organization master account email address

_aws_profile.organization.master_account.id

The organization master account id

_aws_profile.organization.parents[]
Show child fields
_aws_profile.organization.parents[].id

The id of the parent

_aws_profile.organization.parents[].name

The name of the parent

_aws_profile.organization.parents[].tags[]
Show child fields
_aws_profile.organization.parents[].tags[].key
_aws_profile.organization.parents[].tags[].value
_aws_profile.organization.parents[].type

The type of parent can be an organization unit or a root

_aws_profile.organization.tags[]
Show child fields
_aws_profile.organization.tags[].key
_aws_profile.organization.tags[].value
_aws_profile.type

The type of profile, either 'credentials' or 'assumed_role'

_aws_profile.via_profile_name

This IAM role for this profile is assumed by first utilizing another profile with this name to obtain credentials.

_aws_region Input Column

The AWS region to use.

VARCHAR
account_settings

The account settings.

STRUCT(
"aws_account_number" VARCHAR,
"unmetered_devices" MAP(VARCHAR, BIGINT),
"unmetered_remote_access_devices" MAP(VARCHAR, BIGINT),
"max_job_timeout_minutes" BIGINT,
"trial_minutes" STRUCT(
"total" DOUBLE,
"remaining" DOUBLE
),
"max_slots" MAP(VARCHAR, BIGINT),
"default_job_timeout_minutes" BIGINT,
"skip_app_resign" BOOLEAN
)
Show child fields
account_settings.aws_account_number

The AWS account number specified in the AccountSettings container.

account_settings.default_job_timeout_minutes

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

account_settings.max_job_timeout_minutes

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

account_settings.max_slots

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.

account_settings.skip_app_resign

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.

account_settings.trial_minutes

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

Show child fields
account_settings.trial_minutes.remaining

The number of free trial minutes remaining in the account.

account_settings.trial_minutes.total

The total number of free trial minutes that the account started with.

account_settings.unmetered_devices

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

account_settings.unmetered_remote_access_devices

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