_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 )[] )[] ) ) |
device
An object that contains information about the requested device. | STRUCT( "arn" VARCHAR, "name" VARCHAR, "manufacturer" VARCHAR, "model" VARCHAR, "model_id" VARCHAR, "form_factor" VARCHAR, "platform" VARCHAR, "os" VARCHAR, "cpu" STRUCT( "frequency" VARCHAR, "architecture" VARCHAR, "clock" DOUBLE ), "resolution" STRUCT( "width" BIGINT, "height" BIGINT ), "heap_size" BIGINT, "memory" BIGINT, "image" VARCHAR, "carrier" VARCHAR, "radio" VARCHAR, "remote_access_enabled" BOOLEAN, "remote_debug_enabled" BOOLEAN, "fleet_type" VARCHAR, "fleet_name" VARCHAR, "instances" STRUCT( "arn" VARCHAR, "device_arn" VARCHAR, "labels" VARCHAR[], "status" VARCHAR, "udid" VARCHAR, "instance_profile" STRUCT( "arn" VARCHAR, "package_cleanup" BOOLEAN, "exclude_app_packages_from_cleanup" VARCHAR[], "reboot_after_use" BOOLEAN, "name" VARCHAR, "description" VARCHAR ) )[], "availability" VARCHAR ) |
Show child fields- device.arn
The device's ARN.
- device.availability
Indicates how likely a device is available for a test run. Currently available in the ListDevices and GetDevice API methods.
- device.carrier
The device's carrier.
- device.cpu
Information about the device's CPU. Show child fields- device.cpu.architecture
The CPU's architecture (for example, x86 or ARM).
- device.cpu.clock
The clock speed of the device's CPU, expressed in hertz (Hz). For example, a 1.2 GHz CPU is expressed as 1200000000.
- device.cpu.frequency
The CPU's frequency.
- device.fleet_name
The name of the fleet to which this device belongs.
- device.fleet_type
The type of fleet to which this device belongs. Possible values are PRIVATE and PUBLIC.
- device.form_factor
The device's form factor. Allowed values include:
- device.heap_size
The device's heap size, expressed in bytes.
- device.image
The device's image name.
- device.instances[]
Show child fields- device.instances[].arn
The Amazon Resource Name (ARN) of the device instance.
- device.instances[].device_arn
The ARN of the device.
- device.instances[].instance_profile
A object that contains information about the instance profile. Show child fields- device.instances[].instance_profile.arn
The Amazon Resource Name (ARN) of the instance profile.
- device.instances[].instance_profile.description
The description of the instance profile.
- device.instances[].instance_profile.exclude_app_packages_from_cleanup[]
- device.instances[].instance_profile.name
The name of the instance profile.
- device.instances[].instance_profile.package_cleanup
When set to true, Device Farm removes app packages after a test run. The default value is false for private devices.
- device.instances[].instance_profile.reboot_after_use
When set to true, Device Farm reboots the instance after a test run. The default value is true.
- device.instances[].labels[]
- device.instances[].status
The status of the device instance. Valid values are listed here.
- device.instances[].udid
Unique device identifier for the device instance.
- device.manufacturer
The device's manufacturer name.
- device.memory
The device's total memory size, expressed in bytes.
- device.model
The device's model name.
- device.model_id
The device's model ID.
- device.name
The device's display name.
- device.os
The device's operating system type.
- device.platform
The device's platform. Allowed values include:
- device.radio
The device's radio.
- device.remote_access_enabled
Specifies whether remote access has been enabled for the specified device.
- device.remote_debug_enabled
This flag is set to true if remote debugging is enabled for the device. Remote debugging is no longer supported.
- device.resolution
The resolution of the device. Show child fields- device.resolution.height
The screen resolution's height, expressed in pixels.
- device.resolution.width
The screen resolution's width, expressed in pixels.
|