DeviceFarm

Table of Contents

Client

class DeviceFarm.Client

A low-level client representing AWS Device Farm:

import boto3

client = boto3.client('devicefarm')

These are the available methods:

can_paginate(operation_name)

Check if an operation can be paginated.

Parameters
operation_name (string) -- The operation name. This is the same name as the method name on the client. For example, if the method name is create_foo, and you'd normally invoke the operation as client.create_foo(**kwargs), if the create_foo operation can be paginated, you can use the call client.get_paginator("create_foo").
Returns
True if the operation can be paginated, False otherwise.
create_device_pool(**kwargs)

Creates a device pool.

See also: AWS API Documentation

Request Syntax

response = client.create_device_pool(
    projectArn='string',
    name='string',
    description='string',
    rules=[
        {
            'attribute': 'ARN'|'PLATFORM'|'FORM_FACTOR'|'MANUFACTURER'|'REMOTE_ACCESS_ENABLED'|'REMOTE_DEBUG_ENABLED'|'APPIUM_VERSION'|'INSTANCE_ARN'|'INSTANCE_LABELS'|'FLEET_TYPE'|'OS_VERSION'|'MODEL'|'AVAILABILITY',
            'operator': 'EQUALS'|'LESS_THAN'|'LESS_THAN_OR_EQUALS'|'GREATER_THAN'|'GREATER_THAN_OR_EQUALS'|'IN'|'NOT_IN'|'CONTAINS',
            'value': 'string'
        },
    ],
    maxDevices=123
)
Parameters
  • projectArn (string) --

    [REQUIRED]

    The ARN of the project for the device pool.

  • name (string) --

    [REQUIRED]

    The device pool's name.

  • description (string) -- The device pool's description.
  • rules (list) --

    [REQUIRED]

    The device pool's rules.

    • (dict) --

      Represents a condition for a device pool.

      • attribute (string) --

        The rule's stringified attribute. For example, specify the value as "\"abc\"" .

        The supported operators for each attribute are provided in the following list.

        APPIUM_VERSION

        The Appium version for the test.

        Supported operators : CONTAINS
        ARN

        The Amazon Resource Name (ARN) of the device. For example, "arn:aws:devicefarm:us-west-2::device:12345Example".

        Supported operators : EQUALS , IN , NOT_IN
        AVAILABILITY

        The current availability of the device. Valid values are "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".

        Supported operators : EQUALS
        FLEET_TYPE

        The fleet type. Valid values are "PUBLIC" or "PRIVATE".

        Supported operators : EQUALS
        FORM_FACTOR

        The device form factor. Valid values are "PHONE" or "TABLET".

        Supported operators : EQUALS , IN , NOT_IN
        INSTANCE_ARN

        The Amazon Resource Name (ARN) of the device instance.

        Supported operators : IN , NOT_IN
        INSTANCE_LABELS

        The label of the device instance.

        Supported operators : CONTAINS
        MANUFACTURER

        The device manufacturer. For example, "Apple".

        Supported operators : EQUALS , IN , NOT_IN
        MODEL

        The device model, such as "Apple iPad Air 2" or "Google Pixel".

        Supported operators : CONTAINS , EQUALS , IN , NOT_IN
        OS_VERSION

        The operating system version. For example, "10.3.2".

        Supported operators : EQUALS , GREATER_THAN , GREATER_THAN_OR_EQUALS , IN , LESS_THAN , LESS_THAN_OR_EQUALS , NOT_IN
        PLATFORM

        The device platform. Valid values are "ANDROID" or "IOS".

        Supported operators : EQUALS , IN , NOT_IN
        REMOTE_ACCESS_ENABLED

        Whether the device is enabled for remote access. Valid values are "TRUE" or "FALSE".

        Supported operators : EQUALS
        REMOTE_DEBUG_ENABLED

        Whether the device is enabled for remote debugging. Valid values are "TRUE" or "FALSE".

        Supported operators : EQUALS

        This filter will be ignored, as remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

      • operator (string) --

        Specifies how Device Farm compares the rule's attribute to the value. For the operators that are supported by each attribute, see the attribute descriptions.

      • value (string) --

        The rule's value.

  • maxDevices (integer) --

    The number of devices that Device Farm can add to your device pool. Device Farm adds devices that are available and that meet the criteria that you assign for the rules parameter. Depending on how many devices meet these constraints, your device pool might contain fewer devices than the value for this parameter.

    By specifying the maximum number of devices, you can control the costs that you incur by running tests.

Return type

dict

Returns

Response Syntax

{
    'devicePool': {
        'arn': 'string',
        'name': 'string',
        'description': 'string',
        'type': 'CURATED'|'PRIVATE',
        'rules': [
            {
                'attribute': 'ARN'|'PLATFORM'|'FORM_FACTOR'|'MANUFACTURER'|'REMOTE_ACCESS_ENABLED'|'REMOTE_DEBUG_ENABLED'|'APPIUM_VERSION'|'INSTANCE_ARN'|'INSTANCE_LABELS'|'FLEET_TYPE'|'OS_VERSION'|'MODEL'|'AVAILABILITY',
                'operator': 'EQUALS'|'LESS_THAN'|'LESS_THAN_OR_EQUALS'|'GREATER_THAN'|'GREATER_THAN_OR_EQUALS'|'IN'|'NOT_IN'|'CONTAINS',
                'value': 'string'
            },
        ],
        'maxDevices': 123
    }
}

Response Structure

  • (dict) --

    Represents the result of a create device pool request.

    • devicePool (dict) --

      The newly created device pool.

      • arn (string) --

        The device pool's ARN.

      • name (string) --

        The device pool's name.

      • description (string) --

        The device pool's description.

      • type (string) --

        The device pool's type.

        Allowed values include:

        • CURATED: A device pool that is created and managed by AWS Device Farm.
        • PRIVATE: A device pool that is created and managed by the device pool developer.
      • rules (list) --

        Information about the device pool's rules.

        • (dict) --

          Represents a condition for a device pool.

          • attribute (string) --

            The rule's stringified attribute. For example, specify the value as "\"abc\"" .

            The supported operators for each attribute are provided in the following list.

            APPIUM_VERSION

            The Appium version for the test.

            Supported operators : CONTAINS

            ARN

            The Amazon Resource Name (ARN) of the device. For example, "arn:aws:devicefarm:us-west-2::device:12345Example".

            Supported operators : EQUALS , IN , NOT_IN

            AVAILABILITY

            The current availability of the device. Valid values are "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".

            Supported operators : EQUALS

            FLEET_TYPE

            The fleet type. Valid values are "PUBLIC" or "PRIVATE".

            Supported operators : EQUALS

            FORM_FACTOR

            The device form factor. Valid values are "PHONE" or "TABLET".

            Supported operators : EQUALS , IN , NOT_IN

            INSTANCE_ARN

            The Amazon Resource Name (ARN) of the device instance.

            Supported operators : IN , NOT_IN

            INSTANCE_LABELS

            The label of the device instance.

            Supported operators : CONTAINS

            MANUFACTURER

            The device manufacturer. For example, "Apple".

            Supported operators : EQUALS , IN , NOT_IN

            MODEL

            The device model, such as "Apple iPad Air 2" or "Google Pixel".

            Supported operators : CONTAINS , EQUALS , IN , NOT_IN

            OS_VERSION

            The operating system version. For example, "10.3.2".

            Supported operators : EQUALS , GREATER_THAN , GREATER_THAN_OR_EQUALS , IN , LESS_THAN , LESS_THAN_OR_EQUALS , NOT_IN

            PLATFORM

            The device platform. Valid values are "ANDROID" or "IOS".

            Supported operators : EQUALS , IN , NOT_IN

            REMOTE_ACCESS_ENABLED

            Whether the device is enabled for remote access. Valid values are "TRUE" or "FALSE".

            Supported operators : EQUALS

            REMOTE_DEBUG_ENABLED

            Whether the device is enabled for remote debugging. Valid values are "TRUE" or "FALSE".

            Supported operators : EQUALS

            This filter will be ignored, as remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

          • operator (string) --

            Specifies how Device Farm compares the rule's attribute to the value. For the operators that are supported by each attribute, see the attribute descriptions.

          • value (string) --

            The rule's value.

      • maxDevices (integer) --

        The number of devices that Device Farm can add to your device pool. Device Farm adds devices that are available and that meet the criteria that you assign for the rules parameter. Depending on how many devices meet these constraints, your device pool might contain fewer devices than the value for this parameter.

        By specifying the maximum number of devices, you can control the costs that you incur by running tests.

Examples

The following example creates a new device pool named MyDevicePool inside an existing project.

response = client.create_device_pool(
    # A device pool contains related devices, such as devices that run only on Android or that run only on iOS.
    name='MyDevicePool',
    description='My Android devices',
    # You can get the project ARN by using the list-projects CLI command.
    projectArn='arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456',
    rules=[
    ],
)

print(response)

Expected Output:

{
    'devicePool': {
    },
    'ResponseMetadata': {
        '...': '...',
    },
}
create_instance_profile(**kwargs)

Creates a profile that can be applied to one or more private fleet device instances.

See also: AWS API Documentation

Request Syntax

response = client.create_instance_profile(
    name='string',
    description='string',
    packageCleanup=True|False,
    excludeAppPackagesFromCleanup=[
        'string',
    ],
    rebootAfterUse=True|False
)
Parameters
  • name (string) --

    [REQUIRED]

    The name of your instance profile.

  • description (string) -- The description of your instance profile.
  • packageCleanup (boolean) -- When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.
  • excludeAppPackagesFromCleanup (list) --

    An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

    The list of packages is only considered if you set packageCleanup to true .

    • (string) --
  • rebootAfterUse (boolean) -- When set to true , Device Farm will reboot the instance after a test run. The default value is true .
Return type

dict

Returns

Response Syntax

{
    'instanceProfile': {
        'arn': 'string',
        'packageCleanup': True|False,
        'excludeAppPackagesFromCleanup': [
            'string',
        ],
        'rebootAfterUse': True|False,
        'name': 'string',
        'description': 'string'
    }
}

Response Structure

  • (dict) --

    • instanceProfile (dict) --

      An object containing information about your instance profile.

      • arn (string) --

        The Amazon Resource Name (ARN) of the instance profile.

      • packageCleanup (boolean) --

        When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.

      • excludeAppPackagesFromCleanup (list) --

        An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

        The list of packages is only considered if you set packageCleanup to true .

        • (string) --
      • rebootAfterUse (boolean) --

        When set to true , Device Farm will reboot the instance after a test run. The default value is true .

      • name (string) --

        The name of the instance profile.

      • description (string) --

        The description of the instance profile.

create_network_profile(**kwargs)

Creates a network profile.

See also: AWS API Documentation

Request Syntax

response = client.create_network_profile(
    projectArn='string',
    name='string',
    description='string',
    type='CURATED'|'PRIVATE',
    uplinkBandwidthBits=123,
    downlinkBandwidthBits=123,
    uplinkDelayMs=123,
    downlinkDelayMs=123,
    uplinkJitterMs=123,
    downlinkJitterMs=123,
    uplinkLossPercent=123,
    downlinkLossPercent=123
)
Parameters
  • projectArn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the project for which you want to create a network profile.

  • name (string) --

    [REQUIRED]

    The name you wish to specify for the new network profile.

  • description (string) -- The description of the network profile.
  • type (string) -- The type of network profile you wish to create. Valid values are listed below.
  • uplinkBandwidthBits (integer) -- The data throughput rate in bits per second, as an integer from 0 to 104857600.
  • downlinkBandwidthBits (integer) -- The data throughput rate in bits per second, as an integer from 0 to 104857600.
  • uplinkDelayMs (integer) -- Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
  • downlinkDelayMs (integer) -- Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
  • uplinkJitterMs (integer) -- Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
  • downlinkJitterMs (integer) -- Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
  • uplinkLossPercent (integer) -- Proportion of transmitted packets that fail to arrive from 0 to 100 percent.
  • downlinkLossPercent (integer) -- Proportion of received packets that fail to arrive from 0 to 100 percent.
Return type

dict

Returns

Response Syntax

{
    'networkProfile': {
        'arn': 'string',
        'name': 'string',
        'description': 'string',
        'type': 'CURATED'|'PRIVATE',
        'uplinkBandwidthBits': 123,
        'downlinkBandwidthBits': 123,
        'uplinkDelayMs': 123,
        'downlinkDelayMs': 123,
        'uplinkJitterMs': 123,
        'downlinkJitterMs': 123,
        'uplinkLossPercent': 123,
        'downlinkLossPercent': 123
    }
}

Response Structure

  • (dict) --

    • networkProfile (dict) --

      The network profile that is returned by the create network profile request.

      • arn (string) --

        The Amazon Resource Name (ARN) of the network profile.

      • name (string) --

        The name of the network profile.

      • description (string) --

        The description of the network profile.

      • type (string) --

        The type of network profile. Valid values are listed below.

      • uplinkBandwidthBits (integer) --

        The data throughput rate in bits per second, as an integer from 0 to 104857600.

      • downlinkBandwidthBits (integer) --

        The data throughput rate in bits per second, as an integer from 0 to 104857600.

      • uplinkDelayMs (integer) --

        Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.

      • downlinkDelayMs (integer) --

        Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.

      • uplinkJitterMs (integer) --

        Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.

      • downlinkJitterMs (integer) --

        Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.

      • uplinkLossPercent (integer) --

        Proportion of transmitted packets that fail to arrive from 0 to 100 percent.

      • downlinkLossPercent (integer) --

        Proportion of received packets that fail to arrive from 0 to 100 percent.

create_project(**kwargs)

Creates a new project.

See also: AWS API Documentation

Request Syntax

response = client.create_project(
    name='string',
    defaultJobTimeoutMinutes=123
)
Parameters
  • name (string) --

    [REQUIRED]

    The project's name.

  • defaultJobTimeoutMinutes (integer) -- Sets the execution timeout value (in minutes) for a project. All test runs in this project will use the specified execution timeout value unless overridden when scheduling a run.
Return type

dict

Returns

Response Syntax

{
    'project': {
        'arn': 'string',
        'name': 'string',
        'defaultJobTimeoutMinutes': 123,
        'created': datetime(2015, 1, 1)
    }
}

Response Structure

  • (dict) --

    Represents the result of a create project request.

    • project (dict) --

      The newly created project.

      • arn (string) --

        The project's ARN.

      • name (string) --

        The project's name.

      • defaultJobTimeoutMinutes (integer) --

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

      • created (datetime) --

        When the project was created.

Examples

The following example creates a new project named MyProject.

response = client.create_project(
    # A project in Device Farm is a workspace that contains test runs. A run is a test of a single app against one or more devices.
    name='MyProject',
)

print(response)

Expected Output:

{
    'project': {
        'name': 'MyProject',
        'arn': 'arn:aws:devicefarm:us-west-2:183774035805:project:5e01a8c7-c861-4c0a-b1d5-12345EXAMPLE',
        'created': datetime(2016, 8, 31, 16, 28, 59, 2, 244, 0),
    },
    'ResponseMetadata': {
        '...': '...',
    },
}
create_remote_access_session(**kwargs)

Specifies and starts a remote access session.

See also: AWS API Documentation

Request Syntax

response = client.create_remote_access_session(
    projectArn='string',
    deviceArn='string',
    instanceArn='string',
    sshPublicKey='string',
    remoteDebugEnabled=True|False,
    remoteRecordEnabled=True|False,
    remoteRecordAppArn='string',
    name='string',
    clientId='string',
    configuration={
        'billingMethod': 'METERED'|'UNMETERED',
        'vpceConfigurationArns': [
            'string',
        ]
    },
    interactionMode='INTERACTIVE'|'NO_VIDEO'|'VIDEO_ONLY',
    skipAppResign=True|False
)
Parameters
  • projectArn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the project for which you want to create a remote access session.

  • deviceArn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the device for which you want to create a remote access session.

  • instanceArn (string) -- The Amazon Resource Name (ARN) of the device instance for which you want to create a remote access session.
  • sshPublicKey (string) --

    Ignored. The public key of the ssh key pair you want to use for connecting to remote devices in your remote debugging session. This is only required if remoteDebugEnabled is set to true .

    Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

  • remoteDebugEnabled (boolean) --

    Set to true if you want to access devices remotely for debugging in your remote access session.

    Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .
  • remoteRecordEnabled (boolean) -- Set to true to enable remote recording for the remote access session.
  • remoteRecordAppArn (string) -- The Amazon Resource Name (ARN) for the app to be recorded in the remote access session.
  • name (string) -- The name of the remote access session that you wish to create.
  • clientId (string) --

    Unique identifier for the client. If you want access to multiple devices on the same client, you should pass the same clientId value in each call to CreateRemoteAccessSession . This is required only if remoteDebugEnabled is set to true .

    Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .
  • configuration (dict) --

    The configuration information for the remote access session request.

    • billingMethod (string) --

      The billing method for the remote access session.

    • vpceConfigurationArns (list) --

      An array of Amazon Resource Names (ARNs) included in the VPC endpoint configuration.

      • (string) --
  • interactionMode (string) --

    The interaction mode of the remote access session. Valid values are:

    • INTERACTIVE: You can interact with the iOS device by viewing, touching, and rotating the screen. You cannot run XCUITest framework-based tests in this mode.
    • NO_VIDEO: You are connected to the device but cannot interact with it or view the screen. This mode has the fastest test execution speed. You can run XCUITest framework-based tests in this mode.
    • VIDEO_ONLY: You can view the screen but cannot touch or rotate it. You can run XCUITest framework-based tests and watch the screen in this mode.
  • skipAppResign (boolean) --

    When set to true , for private devices, Device Farm will not sign your app again. For public devices, Device Farm always signs your apps again and this parameter has no effect.

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

Return type

dict

Returns

Response Syntax

{
    'remoteAccessSession': {
        'arn': 'string',
        'name': 'string',
        'created': datetime(2015, 1, 1),
        'status': 'PENDING'|'PENDING_CONCURRENCY'|'PENDING_DEVICE'|'PROCESSING'|'SCHEDULING'|'PREPARING'|'RUNNING'|'COMPLETED'|'STOPPING',
        'result': 'PENDING'|'PASSED'|'WARNED'|'FAILED'|'SKIPPED'|'ERRORED'|'STOPPED',
        'message': 'string',
        'started': datetime(2015, 1, 1),
        'stopped': datetime(2015, 1, 1),
        'device': {
            'arn': 'string',
            'name': 'string',
            'manufacturer': 'string',
            'model': 'string',
            'modelId': 'string',
            'formFactor': 'PHONE'|'TABLET',
            'platform': 'ANDROID'|'IOS',
            'os': 'string',
            'cpu': {
                'frequency': 'string',
                'architecture': 'string',
                'clock': 123.0
            },
            'resolution': {
                'width': 123,
                'height': 123
            },
            'heapSize': 123,
            'memory': 123,
            'image': 'string',
            'carrier': 'string',
            'radio': 'string',
            'remoteAccessEnabled': True|False,
            'remoteDebugEnabled': True|False,
            'fleetType': 'string',
            'fleetName': 'string',
            'instances': [
                {
                    'arn': 'string',
                    'deviceArn': 'string',
                    'labels': [
                        'string',
                    ],
                    'status': 'IN_USE'|'PREPARING'|'AVAILABLE'|'NOT_AVAILABLE',
                    'udid': 'string',
                    'instanceProfile': {
                        'arn': 'string',
                        'packageCleanup': True|False,
                        'excludeAppPackagesFromCleanup': [
                            'string',
                        ],
                        'rebootAfterUse': True|False,
                        'name': 'string',
                        'description': 'string'
                    }
                },
            ],
            'availability': 'TEMPORARY_NOT_AVAILABLE'|'BUSY'|'AVAILABLE'|'HIGHLY_AVAILABLE'
        },
        'instanceArn': 'string',
        'remoteDebugEnabled': True|False,
        'remoteRecordEnabled': True|False,
        'remoteRecordAppArn': 'string',
        'hostAddress': 'string',
        'clientId': 'string',
        'billingMethod': 'METERED'|'UNMETERED',
        'deviceMinutes': {
            'total': 123.0,
            'metered': 123.0,
            'unmetered': 123.0
        },
        'endpoint': 'string',
        'deviceUdid': 'string',
        'interactionMode': 'INTERACTIVE'|'NO_VIDEO'|'VIDEO_ONLY',
        'skipAppResign': True|False
    }
}

Response Structure

  • (dict) --

    Represents the server response from a request to create a remote access session.

    • remoteAccessSession (dict) --

      A container that describes the remote access session when the request to create a remote access session is sent.

      • arn (string) --

        The Amazon Resource Name (ARN) of the remote access session.

      • name (string) --

        The name of the remote access session.

      • created (datetime) --

        The date and time the remote access session was created.

      • status (string) --

        The status of the remote access session. Can be any of the following:

        • PENDING: A pending status.
        • PENDING_CONCURRENCY: A pending concurrency status.
        • PENDING_DEVICE: A pending device status.
        • PROCESSING: A processing status.
        • SCHEDULING: A scheduling status.
        • PREPARING: A preparing status.
        • RUNNING: A running status.
        • COMPLETED: A completed status.
        • STOPPING: A stopping status.
      • result (string) --

        The result of the remote access session. Can be any of the following:

        • PENDING: A pending condition.
        • PASSED: A passing condition.
        • WARNED: A warning condition.
        • FAILED: A failed condition.
        • SKIPPED: A skipped condition.
        • ERRORED: An error condition.
        • STOPPED: A stopped condition.
      • message (string) --

        A message about the remote access session.

      • started (datetime) --

        The date and time the remote access session was started.

      • stopped (datetime) --

        The date and time the remote access session was stopped.

      • device (dict) --

        The device (phone or tablet) used in the remote access session.

        • arn (string) --

          The device's ARN.

        • name (string) --

          The device's display name.

        • manufacturer (string) --

          The device's manufacturer name.

        • model (string) --

          The device's model name.

        • modelId (string) --

          The device's model ID.

        • formFactor (string) --

          The device's form factor.

          Allowed values include:

          • PHONE: The phone form factor.
          • TABLET: The tablet form factor.
        • platform (string) --

          The device's platform.

          Allowed values include:

          • ANDROID: The Android platform.
          • IOS: The iOS platform.
        • os (string) --

          The device's operating system type.

        • cpu (dict) --

          Information about the device's CPU.

          • frequency (string) --

            The CPU's frequency.

          • architecture (string) --

            The CPU's architecture, for example x86 or ARM.

          • clock (float) --

            The clock speed of the device's CPU, expressed in hertz (Hz). For example, a 1.2 GHz CPU is expressed as 1200000000.

        • resolution (dict) --

          The resolution of the device.

          • width (integer) --

            The screen resolution's width, expressed in pixels.

          • height (integer) --

            The screen resolution's height, expressed in pixels.

        • heapSize (integer) --

          The device's heap size, expressed in bytes.

        • memory (integer) --

          The device's total memory size, expressed in bytes.

        • image (string) --

          The device's image name.

        • carrier (string) --

          The device's carrier.

        • radio (string) --

          The device's radio.

        • remoteAccessEnabled (boolean) --

          Specifies whether remote access has been enabled for the specified device.

        • remoteDebugEnabled (boolean) --

          This flag is set to true if remote debugging is enabled for the device.

          Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

        • fleetType (string) --

          The type of fleet to which this device belongs. Possible values for fleet type are PRIVATE and PUBLIC.

        • fleetName (string) --

          The name of the fleet to which this device belongs.

        • instances (list) --

          The instances belonging to this device.

          • (dict) --

            Represents the device instance.

            • arn (string) --

              The Amazon Resource Name (ARN) of the device instance.

            • deviceArn (string) --

              The Amazon Resource Name (ARN) of the device.

            • labels (list) --

              An array of strings describing the device instance.

              • (string) --
            • status (string) --

              The status of the device instance. Valid values are listed below.

            • udid (string) --

              Unique device identifier for the device instance.

            • instanceProfile (dict) --

              A object containing information about the instance profile.

              • arn (string) --

                The Amazon Resource Name (ARN) of the instance profile.

              • packageCleanup (boolean) --

                When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.

              • excludeAppPackagesFromCleanup (list) --

                An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

                The list of packages is only considered if you set packageCleanup to true .

                • (string) --
              • rebootAfterUse (boolean) --

                When set to true , Device Farm will reboot the instance after a test run. The default value is true .

              • name (string) --

                The name of the instance profile.

              • description (string) --

                The description of the instance profile.

        • availability (string) --

          Reflects how likely a device will be available for a test run. It is currently available in the ListDevices and GetDevice API methods.

      • instanceArn (string) --

        The Amazon Resource Name (ARN) of the instance.

      • remoteDebugEnabled (boolean) --

        This flag is set to true if remote debugging is enabled for the remote access session.

        Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

      • remoteRecordEnabled (boolean) --

        This flag is set to true if remote recording is enabled for the remote access session.

      • remoteRecordAppArn (string) --

        The Amazon Resource Name (ARN) for the app to be recorded in the remote access session.

      • hostAddress (string) --

        IP address of the EC2 host where you need to connect to remotely debug devices. Only returned if remote debugging is enabled for the remote access session.

        Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

      • clientId (string) --

        Unique identifier of your client for the remote access session. Only returned if remote debugging is enabled for the remote access session.

        Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

      • billingMethod (string) --

        The billing method of the remote access session. Possible values include METERED or UNMETERED . For more information about metered devices, see AWS Device Farm terminology ."

      • deviceMinutes (dict) --

        The number of minutes a device is used in a remote access session (including setup and teardown minutes).

        • total (float) --

          When specified, represents the total minutes used by the resource to run tests.

        • metered (float) --

          When specified, represents only the sum of metered minutes used by the resource to run tests.

        • unmetered (float) --

          When specified, represents only the sum of unmetered minutes used by the resource to run tests.

      • endpoint (string) --

        The endpoint for the remote access sesssion.

      • deviceUdid (string) --

        Unique device identifier for the remote device. Only returned if remote debugging is enabled for the remote access session.

        Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

      • interactionMode (string) --

        The interaction mode of the remote access session. Valid values are:

        • INTERACTIVE: You can interact with the iOS device by viewing, touching, and rotating the screen. You cannot run XCUITest framework-based tests in this mode.
        • NO_VIDEO: You are connected to the device but cannot interact with it or view the screen. This mode has the fastest test execution speed. You can run XCUITest framework-based tests in this mode.
        • VIDEO_ONLY: You can view the screen but cannot touch or rotate it. You can run XCUITest framework-based tests and watch the screen in this mode.
      • skipAppResign (boolean) --

        When set to true , for private devices, Device Farm will not sign your app again. For public devices, Device Farm always signs your apps again and this parameter has no effect.

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

Examples

The following example creates a remote access session named MySession.

response = client.create_remote_access_session(
    name='MySession',
    configuration={
        'billingMethod': 'METERED',
    },
    # You can get the device ARN by using the list-devices CLI command.
    deviceArn='arn:aws:devicefarm:us-west-2::device:123EXAMPLE',
    # You can get the project ARN by using the list-projects CLI command.
    projectArn='arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456',
)

print(response)

Expected Output:

{
    'remoteAccessSession': {
    },
    'ResponseMetadata': {
        '...': '...',
    },
}
create_upload(**kwargs)

Uploads an app or test scripts.

See also: AWS API Documentation

Request Syntax

response = client.create_upload(
    projectArn='string',
    name='string',
    type='ANDROID_APP'|'IOS_APP'|'WEB_APP'|'EXTERNAL_DATA'|'APPIUM_JAVA_JUNIT_TEST_PACKAGE'|'APPIUM_JAVA_TESTNG_TEST_PACKAGE'|'APPIUM_PYTHON_TEST_PACKAGE'|'APPIUM_NODE_TEST_PACKAGE'|'APPIUM_RUBY_TEST_PACKAGE'|'APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE'|'APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE'|'APPIUM_WEB_PYTHON_TEST_PACKAGE'|'APPIUM_WEB_NODE_TEST_PACKAGE'|'APPIUM_WEB_RUBY_TEST_PACKAGE'|'CALABASH_TEST_PACKAGE'|'INSTRUMENTATION_TEST_PACKAGE'|'UIAUTOMATION_TEST_PACKAGE'|'UIAUTOMATOR_TEST_PACKAGE'|'XCTEST_TEST_PACKAGE'|'XCTEST_UI_TEST_PACKAGE'|'APPIUM_JAVA_JUNIT_TEST_SPEC'|'APPIUM_JAVA_TESTNG_TEST_SPEC'|'APPIUM_PYTHON_TEST_SPEC'|'APPIUM_NODE_TEST_SPEC'|'APPIUM_RUBY_TEST_SPEC'|'APPIUM_WEB_JAVA_JUNIT_TEST_SPEC'|'APPIUM_WEB_JAVA_TESTNG_TEST_SPEC'|'APPIUM_WEB_PYTHON_TEST_SPEC'|'APPIUM_WEB_NODE_TEST_SPEC'|'APPIUM_WEB_RUBY_TEST_SPEC'|'INSTRUMENTATION_TEST_SPEC'|'XCTEST_UI_TEST_SPEC',
    contentType='string'
)
Parameters
  • projectArn (string) --

    [REQUIRED]

    The ARN of the project for the upload.

  • name (string) --

    [REQUIRED]

    The upload's file name. The name should not contain the '/' character. If uploading an iOS app, the file name needs to end with the .ipa extension. If uploading an Android app, the file name needs to end with the .apk extension. For all others, the file name must end with the .zip file extension.

  • type (string) --

    [REQUIRED]

    The upload's upload type.

    Must be one of the following values:

    • ANDROID_APP: An Android upload.
    • IOS_APP: An iOS upload.
    • WEB_APP: A web application upload.
    • EXTERNAL_DATA: An external data upload.
    • APPIUM_JAVA_JUNIT_TEST_PACKAGE: An Appium Java JUnit test package upload.
    • APPIUM_JAVA_TESTNG_TEST_PACKAGE: An Appium Java TestNG test package upload.
    • APPIUM_PYTHON_TEST_PACKAGE: An Appium Python test package upload.
    • APPIUM_NODE_TEST_PACKAGE: An Appium Node.js test package upload.
    • APPIUM_RUBY_TEST_PACKAGE: An Appium Ruby test package upload.
    • APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE: An Appium Java JUnit test package upload for a web app.
    • APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE: An Appium Java TestNG test package upload for a web app.
    • APPIUM_WEB_PYTHON_TEST_PACKAGE: An Appium Python test package upload for a web app.
    • APPIUM_WEB_NODE_TEST_PACKAGE: An Appium Node.js test package upload for a web app.
    • APPIUM_WEB_RUBY_TEST_PACKAGE: An Appium Ruby test package upload for a web app.
    • CALABASH_TEST_PACKAGE: A Calabash test package upload.
    • INSTRUMENTATION_TEST_PACKAGE: An instrumentation upload.
    • UIAUTOMATION_TEST_PACKAGE: A uiautomation test package upload.
    • UIAUTOMATOR_TEST_PACKAGE: A uiautomator test package upload.
    • XCTEST_TEST_PACKAGE: An Xcode test package upload.
    • XCTEST_UI_TEST_PACKAGE: An Xcode UI test package upload.
    • APPIUM_JAVA_JUNIT_TEST_SPEC: An Appium Java JUnit test spec upload.
    • APPIUM_JAVA_TESTNG_TEST_SPEC: An Appium Java TestNG test spec upload.
    • APPIUM_PYTHON_TEST_SPEC: An Appium Python test spec upload.
    • APPIUM_NODE_TEST_SPEC: An Appium Node.js test spec upload.
    • APPIUM_RUBY_TEST_SPEC: An Appium Ruby test spec upload.
    • APPIUM_WEB_JAVA_JUNIT_TEST_SPEC: An Appium Java JUnit test spec upload for a web app.
    • APPIUM_WEB_JAVA_TESTNG_TEST_SPEC: An Appium Java TestNG test spec upload for a web app.
    • APPIUM_WEB_PYTHON_TEST_SPEC: An Appium Python test spec upload for a web app.
    • APPIUM_WEB_NODE_TEST_SPEC: An Appium Node.js test spec upload for a web app.
    • APPIUM_WEB_RUBY_TEST_SPEC: An Appium Ruby test spec upload for a web app.
    • INSTRUMENTATION_TEST_SPEC: An instrumentation test spec upload.
    • XCTEST_UI_TEST_SPEC: An Xcode UI test spec upload.
    Note If you call CreateUpload with WEB_APP specified, AWS Device Farm throws an ArgumentException error.
  • contentType (string) -- The upload's content type (for example, "application/octet-stream").
Return type

dict

Returns

Response Syntax

{
    'upload': {
        'arn': 'string',
        'name': 'string',
        'created': datetime(2015, 1, 1),
        'type': 'ANDROID_APP'|'IOS_APP'|'WEB_APP'|'EXTERNAL_DATA'|'APPIUM_JAVA_JUNIT_TEST_PACKAGE'|'APPIUM_JAVA_TESTNG_TEST_PACKAGE'|'APPIUM_PYTHON_TEST_PACKAGE'|'APPIUM_NODE_TEST_PACKAGE'|'APPIUM_RUBY_TEST_PACKAGE'|'APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE'|'APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE'|'APPIUM_WEB_PYTHON_TEST_PACKAGE'|'APPIUM_WEB_NODE_TEST_PACKAGE'|'APPIUM_WEB_RUBY_TEST_PACKAGE'|'CALABASH_TEST_PACKAGE'|'INSTRUMENTATION_TEST_PACKAGE'|'UIAUTOMATION_TEST_PACKAGE'|'UIAUTOMATOR_TEST_PACKAGE'|'XCTEST_TEST_PACKAGE'|'XCTEST_UI_TEST_PACKAGE'|'APPIUM_JAVA_JUNIT_TEST_SPEC'|'APPIUM_JAVA_TESTNG_TEST_SPEC'|'APPIUM_PYTHON_TEST_SPEC'|'APPIUM_NODE_TEST_SPEC'|'APPIUM_RUBY_TEST_SPEC'|'APPIUM_WEB_JAVA_JUNIT_TEST_SPEC'|'APPIUM_WEB_JAVA_TESTNG_TEST_SPEC'|'APPIUM_WEB_PYTHON_TEST_SPEC'|'APPIUM_WEB_NODE_TEST_SPEC'|'APPIUM_WEB_RUBY_TEST_SPEC'|'INSTRUMENTATION_TEST_SPEC'|'XCTEST_UI_TEST_SPEC',
        'status': 'INITIALIZED'|'PROCESSING'|'SUCCEEDED'|'FAILED',
        'url': 'string',
        'metadata': 'string',
        'contentType': 'string',
        'message': 'string',
        'category': 'CURATED'|'PRIVATE'
    }
}

Response Structure

  • (dict) --

    Represents the result of a create upload request.

    • upload (dict) --

      The newly created upload.

      • arn (string) --

        The upload's ARN.

      • name (string) --

        The upload's file name.

      • created (datetime) --

        When the upload was created.

      • type (string) --

        The upload's type.

        Must be one of the following values:

        • ANDROID_APP: An Android upload.
        • IOS_APP: An iOS upload.
        • WEB_APP: A web application upload.
        • EXTERNAL_DATA: An external data upload.
        • APPIUM_JAVA_JUNIT_TEST_PACKAGE: An Appium Java JUnit test package upload.
        • APPIUM_JAVA_TESTNG_TEST_PACKAGE: An Appium Java TestNG test package upload.
        • APPIUM_PYTHON_TEST_PACKAGE: An Appium Python test package upload.
        • APPIUM_NODE_TEST_PACKAGE: An Appium Node.js test package upload.
        • APPIUM_RUBY_TEST_PACKAGE: An Appium Ruby test package upload.
        • APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE: An Appium Java JUnit test package upload for web apps.
        • APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE: An Appium Java TestNG test package upload for web apps.
        • APPIUM_WEB_PYTHON_TEST_PACKAGE: An Appium Python test package upload for web apps.
        • APPIUM_WEB_NODE_TEST_PACKAGE: An Appium Node.js test package upload for web apps.
        • APPIUM_WEB_RUBY_TEST_PACKAGE: An Appium Ruby test package upload for web apps.
        • CALABASH_TEST_PACKAGE: A Calabash test package upload.
        • INSTRUMENTATION_TEST_PACKAGE: An instrumentation upload.
        • UIAUTOMATION_TEST_PACKAGE: A uiautomation test package upload.
        • UIAUTOMATOR_TEST_PACKAGE: A uiautomator test package upload.
        • XCTEST_TEST_PACKAGE: An Xcode test package upload.
        • XCTEST_UI_TEST_PACKAGE: An Xcode UI test package upload.
        • APPIUM_JAVA_JUNIT_TEST_SPEC: An Appium Java JUnit test spec upload.
        • APPIUM_JAVA_TESTNG_TEST_SPEC: An Appium Java TestNG test spec upload.
        • APPIUM_PYTHON_TEST_SPEC: An Appium Python test spec upload.
        • APPIUM_NODE_TEST_SPEC: An Appium Node.js test spec upload.
        • APPIUM_RUBY_TEST_SPEC: An Appium Ruby test spec upload.
        • APPIUM_WEB_JAVA_JUNIT_TEST_SPEC: An Appium Java JUnit test spec upload for a web app.
        • APPIUM_WEB_JAVA_TESTNG_TEST_SPEC: An Appium Java TestNG test spec upload for a web app.
        • APPIUM_WEB_PYTHON_TEST_SPEC: An Appium Python test spec upload for a web app.
        • APPIUM_WEB_NODE_TEST_SPEC: An Appium Node.js test spec upload for a web app.
        • APPIUM_WEB_RUBY_TEST_SPEC: An Appium Ruby test spec upload for a web app.
        • INSTRUMENTATION_TEST_SPEC: An instrumentation test spec upload.
        • XCTEST_UI_TEST_SPEC: An Xcode UI test spec upload.
      • status (string) --

        The upload's status.

        Must be one of the following values:

        • FAILED: A failed status.
        • INITIALIZED: An initialized status.
        • PROCESSING: A processing status.
        • SUCCEEDED: A succeeded status.
      • url (string) --

        The pre-signed Amazon S3 URL that was used to store a file through a corresponding PUT request.

      • metadata (string) --

        The upload's metadata. For example, for Android, this contains information that is parsed from the manifest and is displayed in the AWS Device Farm console after the associated app is uploaded.

      • contentType (string) --

        The upload's content type (for example, "application/octet-stream").

      • message (string) --

        A message about the upload's result.

      • category (string) --

        The upload's category. Allowed values include:

        • CURATED: An upload managed by AWS Device Farm.
        • PRIVATE: An upload managed by the AWS Device Farm customer.

Examples

The following example creates a new Appium Python test package upload inside an existing project.

response = client.create_upload(
    name='MyAppiumPythonUpload',
    type='APPIUM_PYTHON_TEST_PACKAGE',
    # You can get the project ARN by using the list-projects CLI command.
    projectArn='arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456',
)

print(response)

Expected Output:

{
    'upload': {
        'name': 'MyAppiumPythonUpload',
        'type': 'APPIUM_PYTHON_TEST_PACKAGE',
        'arn': 'arn:aws:devicefarm:us-west-2:183774035805:upload:5e01a8c7-c861-4c0a-b1d5-5ec6e6c6dd23/b5340a65-3da7-4da6-a26e-12345EXAMPLE',
        'created': datetime(2016, 8, 31, 16, 36, 44, 2, 244, 0),
        'status': 'INITIALIZED',
        'url': 'https://prod-us-west-2-uploads.s3-us-west-2.amazonaws.com/arn%3Aaws%3Adevicefarm%3Aus-west-2%3A183774035805%3Aproject%3A5e01a8c7-c861-4c0a-b1d5-12345EXAMPLE/uploads/arn%3Aaws%3Adevicefarm%3Aus-west-2%3A183774035805%3Aupload%3A5e01a8c7-c861-4c0a-b1d5-5ec6e6c6dd23/b5340a65-3da7-4da6-a26e-12345EXAMPLE/MyAppiumPythonUpload?AWSAccessKeyId=1234567891011EXAMPLE&Expires=1472747804&Signature=1234567891011EXAMPLE',
    },
    'ResponseMetadata': {
        '...': '...',
    },
}
create_vpce_configuration(**kwargs)

Creates a configuration record in Device Farm for your Amazon Virtual Private Cloud (VPC) endpoint.

See also: AWS API Documentation

Request Syntax

response = client.create_vpce_configuration(
    vpceConfigurationName='string',
    vpceServiceName='string',
    serviceDnsName='string',
    vpceConfigurationDescription='string'
)
Parameters
  • vpceConfigurationName (string) --

    [REQUIRED]

    The friendly name you give to your VPC endpoint configuration, to manage your configurations more easily.

  • vpceServiceName (string) --

    [REQUIRED]

    The name of the VPC endpoint service running inside your AWS account that you want Device Farm to test.

  • serviceDnsName (string) --

    [REQUIRED]

    The DNS name of the service running in your VPC that you want Device Farm to test.

  • vpceConfigurationDescription (string) -- An optional description, providing more details about your VPC endpoint configuration.
Return type

dict

Returns

Response Syntax

{
    'vpceConfiguration': {
        'arn': 'string',
        'vpceConfigurationName': 'string',
        'vpceServiceName': 'string',
        'serviceDnsName': 'string',
        'vpceConfigurationDescription': 'string'
    }
}

Response Structure

  • (dict) --

    • vpceConfiguration (dict) --

      An object containing information about your VPC endpoint configuration.

      • arn (string) --

        The Amazon Resource Name (ARN) of the VPC endpoint configuration.

      • vpceConfigurationName (string) --

        The friendly name you give to your VPC endpoint configuration, to manage your configurations more easily.

      • vpceServiceName (string) --

        The name of the VPC endpoint service running inside your AWS account that you want Device Farm to test.

      • serviceDnsName (string) --

        The DNS name that maps to the private IP address of the service you want to access.

      • vpceConfigurationDescription (string) --

        An optional description, providing more details about your VPC endpoint configuration.

delete_device_pool(**kwargs)

Deletes a device pool given the pool ARN. Does not allow deletion of curated pools owned by the system.

See also: AWS API Documentation

Request Syntax

response = client.delete_device_pool(
    arn='string'
)
Parameters
arn (string) --

[REQUIRED]

Represents the Amazon Resource Name (ARN) of the Device Farm device pool you wish to delete.

Return type
dict
Returns
Response Syntax
{}

Response Structure

  • (dict) --

    Represents the result of a delete device pool request.

Examples

The following example deletes a specific device pool.

response = client.delete_device_pool(
    # You can get the device pool ARN by using the list-device-pools CLI command.
    arn='arn:aws:devicefarm:us-west-2::devicepool:123-456-EXAMPLE-GUID',
)

print(response)

Expected Output:

{
    'ResponseMetadata': {
        '...': '...',
    },
}
delete_instance_profile(**kwargs)

Deletes a profile that can be applied to one or more private device instances.

See also: AWS API Documentation

Request Syntax

response = client.delete_instance_profile(
    arn='string'
)
Parameters
arn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the instance profile you are requesting to delete.

Return type
dict
Returns
Response Syntax
{}

Response Structure

  • (dict) --
delete_network_profile(**kwargs)

Deletes a network profile.

See also: AWS API Documentation

Request Syntax

response = client.delete_network_profile(
    arn='string'
)
Parameters
arn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the network profile you want to delete.

Return type
dict
Returns
Response Syntax
{}

Response Structure

  • (dict) --
delete_project(**kwargs)

Deletes an AWS Device Farm project, given the project ARN.

Note Deleting this resource does not stop an in-progress run.

See also: AWS API Documentation

Request Syntax

response = client.delete_project(
    arn='string'
)
Parameters
arn (string) --

[REQUIRED]

Represents the Amazon Resource Name (ARN) of the Device Farm project you wish to delete.

Return type
dict
Returns
Response Syntax
{}

Response Structure

  • (dict) --

    Represents the result of a delete project request.

Examples

The following example deletes a specific project.

response = client.delete_project(
    # You can get the project ARN by using the list-projects CLI command.
    arn='arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456',
)

print(response)

Expected Output:

{
    'ResponseMetadata': {
        '...': '...',
    },
}
delete_remote_access_session(**kwargs)

Deletes a completed remote access session and its results.

See also: AWS API Documentation

Request Syntax

response = client.delete_remote_access_session(
    arn='string'
)
Parameters
arn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the session for which you want to delete remote access.

Return type
dict
Returns
Response Syntax
{}

Response Structure

  • (dict) --

    The response from the server when a request is made to delete the remote access session.

Examples

The following example deletes a specific remote access session.

response = client.delete_remote_access_session(
    # You can get the remote access session ARN by using the list-remote-access-sessions CLI command.
    arn='arn:aws:devicefarm:us-west-2:123456789101:session:EXAMPLE-GUID-123-456',
)

print(response)

Expected Output:

{
    'ResponseMetadata': {
        '...': '...',
    },
}
delete_run(**kwargs)

Deletes the run, given the run ARN.

Note Deleting this resource does not stop an in-progress run.

See also: AWS API Documentation

Request Syntax

response = client.delete_run(
    arn='string'
)
Parameters
arn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) for the run you wish to delete.

Return type
dict
Returns
Response Syntax
{}

Response Structure

  • (dict) --

    Represents the result of a delete run request.

Examples

The following example deletes a specific test run.

response = client.delete_run(
    # You can get the run ARN by using the list-runs CLI command.
    arn='arn:aws:devicefarm:us-west-2:123456789101:run:EXAMPLE-GUID-123-456',
)

print(response)

Expected Output:

{
    'ResponseMetadata': {
        '...': '...',
    },
}
delete_upload(**kwargs)

Deletes an upload given the upload ARN.

See also: AWS API Documentation

Request Syntax

response = client.delete_upload(
    arn='string'
)
Parameters
arn (string) --

[REQUIRED]

Represents the Amazon Resource Name (ARN) of the Device Farm upload you wish to delete.

Return type
dict
Returns
Response Syntax
{}

Response Structure

  • (dict) --

    Represents the result of a delete upload request.

Examples

The following example deletes a specific upload.

response = client.delete_upload(
    # You can get the upload ARN by using the list-uploads CLI command.
    arn='arn:aws:devicefarm:us-west-2:123456789101:upload:EXAMPLE-GUID-123-456',
)

print(response)

Expected Output:

{
    'ResponseMetadata': {
        '...': '...',
    },
}
delete_vpce_configuration(**kwargs)

Deletes a configuration for your Amazon Virtual Private Cloud (VPC) endpoint.

See also: AWS API Documentation

Request Syntax

response = client.delete_vpce_configuration(
    arn='string'
)
Parameters
arn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the VPC endpoint configuration you want to delete.

Return type
dict
Returns
Response Syntax
{}

Response Structure

  • (dict) --
generate_presigned_url(ClientMethod, Params=None, ExpiresIn=3600, HttpMethod=None)

Generate a presigned url given a client, its method, and arguments

Parameters
  • ClientMethod (string) -- The client method to presign for
  • Params (dict) -- The parameters normally passed to ClientMethod.
  • ExpiresIn (int) -- The number of seconds the presigned url is valid for. By default it expires in an hour (3600 seconds)
  • HttpMethod (string) -- The http method to use on the generated url. By default, the http method is whatever is used in the method's model.
Returns

The presigned url

get_account_settings()

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

See also: AWS API Documentation

Request Syntax

response = client.get_account_settings()
Return type
dict
Returns
Response Syntax
{
    'accountSettings': {
        'awsAccountNumber': 'string',
        'unmeteredDevices': {
            'string': 123
        },
        'unmeteredRemoteAccessDevices': {
            'string': 123
        },
        'maxJobTimeoutMinutes': 123,
        'trialMinutes': {
            'total': 123.0,
            'remaining': 123.0
        },
        'maxSlots': {
            'string': 123
        },
        'defaultJobTimeoutMinutes': 123,
        'skipAppResign': True|False
    }
}

Response Structure

  • (dict) --

    Represents the account settings return values from the GetAccountSettings request.

    • accountSettings (dict) --

      The account settings.

      • awsAccountNumber (string) --

        The AWS account number specified in the AccountSettings container.

      • unmeteredDevices (dict) --

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

        • (string) --
          • (integer) --
      • unmeteredRemoteAccessDevices (dict) --

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

        • (string) --
          • (integer) --
      • maxJobTimeoutMinutes (integer) --

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

      • trialMinutes (dict) --

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

        • total (float) --

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

        • remaining (float) --

          The number of free trial minutes remaining in the account.

      • maxSlots (dict) --

        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.

        • (string) --
          • (integer) --
      • defaultJobTimeoutMinutes (integer) --

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

      • skipAppResign (boolean) --

        When set to true , for private devices, Device Farm will not sign your app again. For public devices, Device Farm always signs your apps again and this parameter has no effect.

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

Examples

The following example returns information about your Device Farm account settings.

response = client.get_account_settings(
)

print(response)

Expected Output:

{
    'accountSettings': {
        'awsAccountNumber': '123456789101',
        'unmeteredDevices': {
            'ANDROID': 1,
            'IOS': 2,
        },
    },
    'ResponseMetadata': {
        '...': '...',
    },
}
get_device(**kwargs)

Gets information about a unique device type.

See also: AWS API Documentation

Request Syntax

response = client.get_device(
    arn='string'
)
Parameters
arn (string) --

[REQUIRED]

The device type's ARN.

Return type
dict
Returns
Response Syntax
{
    'device': {
        'arn': 'string',
        'name': 'string',
        'manufacturer': 'string',
        'model': 'string',
        'modelId': 'string',
        'formFactor': 'PHONE'|'TABLET',
        'platform': 'ANDROID'|'IOS',
        'os': 'string',
        'cpu': {
            'frequency': 'string',
            'architecture': 'string',
            'clock': 123.0
        },
        'resolution': {
            'width': 123,
            'height': 123
        },
        'heapSize': 123,
        'memory': 123,
        'image': 'string',
        'carrier': 'string',
        'radio': 'string',
        'remoteAccessEnabled': True|False,
        'remoteDebugEnabled': True|False,
        'fleetType': 'string',
        'fleetName': 'string',
        'instances': [
            {
                'arn': 'string',
                'deviceArn': 'string',
                'labels': [
                    'string',
                ],
                'status': 'IN_USE'|'PREPARING'|'AVAILABLE'|'NOT_AVAILABLE',
                'udid': 'string',
                'instanceProfile': {
                    'arn': 'string',
                    'packageCleanup': True|False,
                    'excludeAppPackagesFromCleanup': [
                        'string',
                    ],
                    'rebootAfterUse': True|False,
                    'name': 'string',
                    'description': 'string'
                }
            },
        ],
        'availability': 'TEMPORARY_NOT_AVAILABLE'|'BUSY'|'AVAILABLE'|'HIGHLY_AVAILABLE'
    }
}

Response Structure

  • (dict) --

    Represents the result of a get device request.

    • device (dict) --

      An object containing information about the requested device.

      • arn (string) --

        The device's ARN.

      • name (string) --

        The device's display name.

      • manufacturer (string) --

        The device's manufacturer name.

      • model (string) --

        The device's model name.

      • modelId (string) --

        The device's model ID.

      • formFactor (string) --

        The device's form factor.

        Allowed values include:

        • PHONE: The phone form factor.
        • TABLET: The tablet form factor.
      • platform (string) --

        The device's platform.

        Allowed values include:

        • ANDROID: The Android platform.
        • IOS: The iOS platform.
      • os (string) --

        The device's operating system type.

      • cpu (dict) --

        Information about the device's CPU.

        • frequency (string) --

          The CPU's frequency.

        • architecture (string) --

          The CPU's architecture, for example x86 or ARM.

        • clock (float) --

          The clock speed of the device's CPU, expressed in hertz (Hz). For example, a 1.2 GHz CPU is expressed as 1200000000.

      • resolution (dict) --

        The resolution of the device.

        • width (integer) --

          The screen resolution's width, expressed in pixels.

        • height (integer) --

          The screen resolution's height, expressed in pixels.

      • heapSize (integer) --

        The device's heap size, expressed in bytes.

      • memory (integer) --

        The device's total memory size, expressed in bytes.

      • image (string) --

        The device's image name.

      • carrier (string) --

        The device's carrier.

      • radio (string) --

        The device's radio.

      • remoteAccessEnabled (boolean) --

        Specifies whether remote access has been enabled for the specified device.

      • remoteDebugEnabled (boolean) --

        This flag is set to true if remote debugging is enabled for the device.

        Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .
      • fleetType (string) --

        The type of fleet to which this device belongs. Possible values for fleet type are PRIVATE and PUBLIC.

      • fleetName (string) --

        The name of the fleet to which this device belongs.

      • instances (list) --

        The instances belonging to this device.

        • (dict) --

          Represents the device instance.

          • arn (string) --

            The Amazon Resource Name (ARN) of the device instance.

          • deviceArn (string) --

            The Amazon Resource Name (ARN) of the device.

          • labels (list) --

            An array of strings describing the device instance.

            • (string) --
          • status (string) --

            The status of the device instance. Valid values are listed below.

          • udid (string) --

            Unique device identifier for the device instance.

          • instanceProfile (dict) --

            A object containing information about the instance profile.

            • arn (string) --

              The Amazon Resource Name (ARN) of the instance profile.

            • packageCleanup (boolean) --

              When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.

            • excludeAppPackagesFromCleanup (list) --

              An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

              The list of packages is only considered if you set packageCleanup to true .

              • (string) --
            • rebootAfterUse (boolean) --

              When set to true , Device Farm will reboot the instance after a test run. The default value is true .

            • name (string) --

              The name of the instance profile.

            • description (string) --

              The description of the instance profile.

      • availability (string) --

        Reflects how likely a device will be available for a test run. It is currently available in the ListDevices and GetDevice API methods.

Examples

The following example returns information about a specific device.

response = client.get_device(
    arn='arn:aws:devicefarm:us-west-2::device:123EXAMPLE',
)

print(response)

Expected Output:

{
    'device': {
        'name': 'LG G2 (Sprint)',
        'arn': 'arn:aws:devicefarm:us-west-2::device:A0E6E6E1059E45918208DF75B2B7EF6C',
        'cpu': {
            'architecture': 'armeabi-v7a',
            'clock': 2265.6,
            'frequency': 'MHz',
        },
        'formFactor': 'PHONE',
        'heapSize': 256000000,
        'image': '75B2B7EF6C12345EXAMPLE',
        'manufacturer': 'LG',
        'memory': 16000000000,
        'model': 'G2 (Sprint)',
        'os': '4.2.2',
        'platform': 'ANDROID',
        'resolution': {
            'height': 1920,
            'width': 1080,
        },
    },
    'ResponseMetadata': {
        '...': '...',
    },
}
get_device_instance(**kwargs)

Returns information about a device instance belonging to a private device fleet.

See also: AWS API Documentation

Request Syntax

response = client.get_device_instance(
    arn='string'
)
Parameters
arn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the instance you're requesting information about.

Return type
dict
Returns
Response Syntax
{
    'deviceInstance': {
        'arn': 'string',
        'deviceArn': 'string',
        'labels': [
            'string',
        ],
        'status': 'IN_USE'|'PREPARING'|'AVAILABLE'|'NOT_AVAILABLE',
        'udid': 'string',
        'instanceProfile': {
            'arn': 'string',
            'packageCleanup': True|False,
            'excludeAppPackagesFromCleanup': [
                'string',
            ],
            'rebootAfterUse': True|False,
            'name': 'string',
            'description': 'string'
        }
    }
}

Response Structure

  • (dict) --
    • deviceInstance (dict) --

      An object containing information about your device instance.

      • arn (string) --

        The Amazon Resource Name (ARN) of the device instance.

      • deviceArn (string) --

        The Amazon Resource Name (ARN) of the device.

      • labels (list) --

        An array of strings describing the device instance.

        • (string) --
      • status (string) --

        The status of the device instance. Valid values are listed below.

      • udid (string) --

        Unique device identifier for the device instance.

      • instanceProfile (dict) --

        A object containing information about the instance profile.

        • arn (string) --

          The Amazon Resource Name (ARN) of the instance profile.

        • packageCleanup (boolean) --

          When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.

        • excludeAppPackagesFromCleanup (list) --

          An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

          The list of packages is only considered if you set packageCleanup to true .

          • (string) --
        • rebootAfterUse (boolean) --

          When set to true , Device Farm will reboot the instance after a test run. The default value is true .

        • name (string) --

          The name of the instance profile.

        • description (string) --

          The description of the instance profile.

get_device_pool(**kwargs)

Gets information about a device pool.

See also: AWS API Documentation

Request Syntax

response = client.get_device_pool(
    arn='string'
)
Parameters
arn (string) --

[REQUIRED]

The device pool's ARN.

Return type
dict
Returns
Response Syntax
{
    'devicePool': {
        'arn': 'string',
        'name': 'string',
        'description': 'string',
        'type': 'CURATED'|'PRIVATE',
        'rules': [
            {
                'attribute': 'ARN'|'PLATFORM'|'FORM_FACTOR'|'MANUFACTURER'|'REMOTE_ACCESS_ENABLED'|'REMOTE_DEBUG_ENABLED'|'APPIUM_VERSION'|'INSTANCE_ARN'|'INSTANCE_LABELS'|'FLEET_TYPE'|'OS_VERSION'|'MODEL'|'AVAILABILITY',
                'operator': 'EQUALS'|'LESS_THAN'|'LESS_THAN_OR_EQUALS'|'GREATER_THAN'|'GREATER_THAN_OR_EQUALS'|'IN'|'NOT_IN'|'CONTAINS',
                'value': 'string'
            },
        ],
        'maxDevices': 123
    }
}

Response Structure

  • (dict) --

    Represents the result of a get device pool request.

    • devicePool (dict) --

      An object containing information about the requested device pool.

      • arn (string) --

        The device pool's ARN.

      • name (string) --

        The device pool's name.

      • description (string) --

        The device pool's description.

      • type (string) --

        The device pool's type.

        Allowed values include:

        • CURATED: A device pool that is created and managed by AWS Device Farm.
        • PRIVATE: A device pool that is created and managed by the device pool developer.
      • rules (list) --

        Information about the device pool's rules.

        • (dict) --

          Represents a condition for a device pool.

          • attribute (string) --

            The rule's stringified attribute. For example, specify the value as "\"abc\"" .

            The supported operators for each attribute are provided in the following list.

            APPIUM_VERSION

            The Appium version for the test.

            Supported operators : CONTAINS
            ARN

            The Amazon Resource Name (ARN) of the device. For example, "arn:aws:devicefarm:us-west-2::device:12345Example".

            Supported operators : EQUALS , IN , NOT_IN
            AVAILABILITY

            The current availability of the device. Valid values are "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".

            Supported operators : EQUALS
            FLEET_TYPE

            The fleet type. Valid values are "PUBLIC" or "PRIVATE".

            Supported operators : EQUALS
            FORM_FACTOR

            The device form factor. Valid values are "PHONE" or "TABLET".

            Supported operators : EQUALS , IN , NOT_IN
            INSTANCE_ARN

            The Amazon Resource Name (ARN) of the device instance.

            Supported operators : IN , NOT_IN
            INSTANCE_LABELS

            The label of the device instance.

            Supported operators : CONTAINS
            MANUFACTURER

            The device manufacturer. For example, "Apple".

            Supported operators : EQUALS , IN , NOT_IN
            MODEL

            The device model, such as "Apple iPad Air 2" or "Google Pixel".

            Supported operators : CONTAINS , EQUALS , IN , NOT_IN
            OS_VERSION

            The operating system version. For example, "10.3.2".

            Supported operators : EQUALS , GREATER_THAN , GREATER_THAN_OR_EQUALS , IN , LESS_THAN , LESS_THAN_OR_EQUALS , NOT_IN
            PLATFORM

            The device platform. Valid values are "ANDROID" or "IOS".

            Supported operators : EQUALS , IN , NOT_IN
            REMOTE_ACCESS_ENABLED

            Whether the device is enabled for remote access. Valid values are "TRUE" or "FALSE".

            Supported operators : EQUALS
            REMOTE_DEBUG_ENABLED

            Whether the device is enabled for remote debugging. Valid values are "TRUE" or "FALSE".

            Supported operators : EQUALS

            This filter will be ignored, as remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

          • operator (string) --

            Specifies how Device Farm compares the rule's attribute to the value. For the operators that are supported by each attribute, see the attribute descriptions.

          • value (string) --

            The rule's value.

      • maxDevices (integer) --

        The number of devices that Device Farm can add to your device pool. Device Farm adds devices that are available and that meet the criteria that you assign for the rules parameter. Depending on how many devices meet these constraints, your device pool might contain fewer devices than the value for this parameter.

        By specifying the maximum number of devices, you can control the costs that you incur by running tests.

Examples

The following example returns information about a specific device pool, given a project ARN.

response = client.get_device_pool(
    # You can obtain the project ARN by using the list-projects CLI command.
    arn='arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456',
)

print(response)

Expected Output:

{
    'devicePool': {
    },
    'ResponseMetadata': {
        '...': '...',
    },
}
get_device_pool_compatibility(**kwargs)

Gets information about compatibility with a device pool.

See also: AWS API Documentation

Request Syntax

response = client.get_device_pool_compatibility(
    devicePoolArn='string',
    appArn='string',
    testType='BUILTIN_FUZZ'|'BUILTIN_EXPLORER'|'WEB_PERFORMANCE_PROFILE'|'APPIUM_JAVA_JUNIT'|'APPIUM_JAVA_TESTNG'|'APPIUM_PYTHON'|'APPIUM_NODE'|'APPIUM_RUBY'|'APPIUM_WEB_JAVA_JUNIT'|'APPIUM_WEB_JAVA_TESTNG'|'APPIUM_WEB_PYTHON'|'APPIUM_WEB_NODE'|'APPIUM_WEB_RUBY'|'CALABASH'|'INSTRUMENTATION'|'UIAUTOMATION'|'UIAUTOMATOR'|'XCTEST'|'XCTEST_UI'|'REMOTE_ACCESS_RECORD'|'REMOTE_ACCESS_REPLAY',
    test={
        'type': 'BUILTIN_FUZZ'|'BUILTIN_EXPLORER'|'WEB_PERFORMANCE_PROFILE'|'APPIUM_JAVA_JUNIT'|'APPIUM_JAVA_TESTNG'|'APPIUM_PYTHON'|'APPIUM_NODE'|'APPIUM_RUBY'|'APPIUM_WEB_JAVA_JUNIT'|'APPIUM_WEB_JAVA_TESTNG'|'APPIUM_WEB_PYTHON'|'APPIUM_WEB_NODE'|'APPIUM_WEB_RUBY'|'CALABASH'|'INSTRUMENTATION'|'UIAUTOMATION'|'UIAUTOMATOR'|'XCTEST'|'XCTEST_UI'|'REMOTE_ACCESS_RECORD'|'REMOTE_ACCESS_REPLAY',
        'testPackageArn': 'string',
        'testSpecArn': 'string',
        'filter': 'string',
        'parameters': {
            'string': 'string'
        }
    },
    configuration={
        'extraDataPackageArn': 'string',
        'networkProfileArn': 'string',
        'locale': 'string',
        'location': {
            'latitude': 123.0,
            'longitude': 123.0
        },
        'vpceConfigurationArns': [
            'string',
        ],
        'customerArtifactPaths': {
            'iosPaths': [
                'string',
            ],
            'androidPaths': [
                'string',
            ],
            'deviceHostPaths': [
                'string',
            ]
        },
        'radios': {
            'wifi': True|False,
            'bluetooth': True|False,
            'nfc': True|False,
            'gps': True|False
        },
        'auxiliaryApps': [
            'string',
        ],
        'billingMethod': 'METERED'|'UNMETERED'
    }
)
Parameters
  • devicePoolArn (string) --

    [REQUIRED]

    The device pool's ARN.

  • appArn (string) -- The ARN of the app that is associated with the specified device pool.
  • testType (string) --

    The test type for the specified device pool.

    Allowed values include the following:

    • BUILTIN_FUZZ: The built-in fuzz type.
    • BUILTIN_EXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.
    • APPIUM_JAVA_JUNIT: The Appium Java JUnit type.
    • APPIUM_JAVA_TESTNG: The Appium Java TestNG type.
    • APPIUM_PYTHON: The Appium Python type.
    • APPIUM_NODE: The Appium Node.js type.
    • APPIUM_RUBY: The Appium Ruby type.
    • APPIUM_WEB_JAVA_JUNIT: The Appium Java JUnit type for web apps.
    • APPIUM_WEB_JAVA_TESTNG: The Appium Java TestNG type for web apps.
    • APPIUM_WEB_PYTHON: The Appium Python type for web apps.
    • APPIUM_WEB_NODE: The Appium Node.js type for web apps.
    • APPIUM_WEB_RUBY: The Appium Ruby type for web apps.
    • CALABASH: The Calabash type.
    • INSTRUMENTATION: The Instrumentation type.
    • UIAUTOMATION: The uiautomation type.
    • UIAUTOMATOR: The uiautomator type.
    • XCTEST: The Xcode test type.
    • XCTEST_UI: The Xcode UI test type.
  • test (dict) --

    Information about the uploaded test to be run against the device pool.

    • type (string) -- [REQUIRED]

      The test's type.

      Must be one of the following values:

      • BUILTIN_FUZZ: The built-in fuzz type.
      • BUILTIN_EXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.
      • APPIUM_JAVA_JUNIT: The Appium Java JUnit type.
      • APPIUM_JAVA_TESTNG: The Appium Java TestNG type.
      • APPIUM_PYTHON: The Appium Python type.
      • APPIUM_NODE: The Appium Node.js type.
      • APPIUM_RUBY: The Appium Ruby type.
      • APPIUM_WEB_JAVA_JUNIT: The Appium Java JUnit type for web apps.
      • APPIUM_WEB_JAVA_TESTNG: The Appium Java TestNG type for web apps.
      • APPIUM_WEB_PYTHON: The Appium Python type for web apps.
      • APPIUM_WEB_NODE: The Appium Node.js type for web apps.
      • APPIUM_WEB_RUBY: The Appium Ruby type for web apps.
      • CALABASH: The Calabash type.
      • INSTRUMENTATION: The Instrumentation type.
      • UIAUTOMATION: The uiautomation type.
      • UIAUTOMATOR: The uiautomator type.
      • XCTEST: The Xcode test type.
      • XCTEST_UI: The Xcode UI test type.
    • testPackageArn (string) --

      The ARN of the uploaded test that will be run.

    • testSpecArn (string) --

      The ARN of the YAML-formatted test specification.

    • filter (string) --

      The test's filter.

    • parameters (dict) --

      The test's parameters, such as test framework parameters and fixture settings. Parameters are represented by name-value pairs of strings.

      For all tests:

      • app_performance_monitoring: Performance monitoring is enabled by default. Set this parameter to "false" to disable it.

      For Calabash tests:

      • profile: A cucumber profile, for example, "my_profile_name".
      • tags: You can limit execution to features or scenarios that have (or don't have) certain tags, for example, "@smoke" or "@smoke,~@wip".

      For Appium tests (all types):

      • appium_version: The Appium version. Currently supported values are "1.6.5" (and higher), "latest", and "default".
        • “latest” will run the latest Appium version supported by Device Farm (1.9.1).
        • For “default”, Device Farm will choose a compatible version of Appium for the device. The current behavior is to run 1.7.2 on Android devices and iOS 9 and earlier, 1.7.2 for iOS 10 and later.
        • This behavior is subject to change.

      For Fuzz tests (Android only):

      • event_count: The number of events, between 1 and 10000, that the UI fuzz test should perform.
      • throttle: The time, in ms, between 0 and 1000, that the UI fuzz test should wait between events.
      • seed: A seed to use for randomizing the UI fuzz test. Using the same seed value between tests ensures identical event sequences.

      For Explorer tests:

      • username: A username to use if the Explorer encounters a login form. If not supplied, no username will be inserted.
      • password: A password to use if the Explorer encounters a login form. If not supplied, no password will be inserted.

      For Instrumentation:

      • filter: A test filter string. Examples:
        • Running a single test case: "com.android.abc.Test1"
        • Running a single test: "com.android.abc.Test1#smoke"
        • Running multiple tests: "com.android.abc.Test1,com.android.abc.Test2"

      For XCTest and XCTestUI:

      • filter: A test filter string. Examples:
        • Running a single test class: "LoginTests"
        • Running a multiple test classes: "LoginTests,SmokeTests"
        • Running a single test: "LoginTests/testValid"
        • Running multiple tests: "LoginTests/testValid,LoginTests/testInvalid"

      For UIAutomator:

      • filter: A test filter string. Examples:
        • Running a single test case: "com.android.abc.Test1"
        • Running a single test: "com.android.abc.Test1#smoke"
        • Running multiple tests: "com.android.abc.Test1,com.android.abc.Test2"
      • (string) --
        • (string) --
  • configuration (dict) --

    An object containing information about the settings for a run.

    • extraDataPackageArn (string) --

      The ARN of the extra data for the run. The extra data is a .zip file that AWS Device Farm will extract to external data for Android or the app's sandbox for iOS.

    • networkProfileArn (string) --

      Reserved for internal use.

    • locale (string) --

      Information about the locale that is used for the run.

    • location (dict) --

      Information about the location that is used for the run.

      • latitude (float) -- [REQUIRED]

        The latitude.

      • longitude (float) -- [REQUIRED]

        The longitude.

    • vpceConfigurationArns (list) --

      An array of Amazon Resource Names (ARNs) for your VPC endpoint configurations.

      • (string) --
    • customerArtifactPaths (dict) --

      Input CustomerArtifactPaths object for the scheduled run configuration.

      • iosPaths (list) --

        Comma-separated list of paths on the iOS device where the artifacts generated by the customer's tests will be pulled from.

        • (string) --
      • androidPaths (list) --

        Comma-separated list of paths on the Android device where the artifacts generated by the customer's tests will be pulled from.

        • (string) --
      • deviceHostPaths (list) --

        Comma-separated list of paths in the test execution environment where the artifacts generated by the customer's tests will be pulled from.

        • (string) --
    • radios (dict) --

      Information about the radio states for the run.

      • wifi (boolean) --

        True if Wi-Fi is enabled at the beginning of the test; otherwise, false.

      • bluetooth (boolean) --

        True if Bluetooth is enabled at the beginning of the test; otherwise, false.

      • nfc (boolean) --

        True if NFC is enabled at the beginning of the test; otherwise, false.

      • gps (boolean) --

        True if GPS is enabled at the beginning of the test; otherwise, false.

    • auxiliaryApps (list) --

      A list of Upload ARNs for app packages that will be installed alongside your app.

      • (string) --
    • billingMethod (string) --

      Specifies the billing method for a test run: metered or unmetered . If the parameter is not specified, the default value is metered .

Return type

dict

Returns

Response Syntax

{
    'compatibleDevices': [
        {
            'device': {
                'arn': 'string',
                'name': 'string',
                'manufacturer': 'string',
                'model': 'string',
                'modelId': 'string',
                'formFactor': 'PHONE'|'TABLET',
                'platform': 'ANDROID'|'IOS',
                'os': 'string',
                'cpu': {
                    'frequency': 'string',
                    'architecture': 'string',
                    'clock': 123.0
                },
                'resolution': {
                    'width': 123,
                    'height': 123
                },
                'heapSize': 123,
                'memory': 123,
                'image': 'string',
                'carrier': 'string',
                'radio': 'string',
                'remoteAccessEnabled': True|False,
                'remoteDebugEnabled': True|False,
                'fleetType': 'string',
                'fleetName': 'string',
                'instances': [
                    {
                        'arn': 'string',
                        'deviceArn': 'string',
                        'labels': [
                            'string',
                        ],
                        'status': 'IN_USE'|'PREPARING'|'AVAILABLE'|'NOT_AVAILABLE',
                        'udid': 'string',
                        'instanceProfile': {
                            'arn': 'string',
                            'packageCleanup': True|False,
                            'excludeAppPackagesFromCleanup': [
                                'string',
                            ],
                            'rebootAfterUse': True|False,
                            'name': 'string',
                            'description': 'string'
                        }
                    },
                ],
                'availability': 'TEMPORARY_NOT_AVAILABLE'|'BUSY'|'AVAILABLE'|'HIGHLY_AVAILABLE'
            },
            'compatible': True|False,
            'incompatibilityMessages': [
                {
                    'message': 'string',
                    'type': 'ARN'|'PLATFORM'|'FORM_FACTOR'|'MANUFACTURER'|'REMOTE_ACCESS_ENABLED'|'REMOTE_DEBUG_ENABLED'|'APPIUM_VERSION'|'INSTANCE_ARN'|'INSTANCE_LABELS'|'FLEET_TYPE'|'OS_VERSION'|'MODEL'|'AVAILABILITY'
                },
            ]
        },
    ],
    'incompatibleDevices': [
        {
            'device': {
                'arn': 'string',
                'name': 'string',
                'manufacturer': 'string',
                'model': 'string',
                'modelId': 'string',
                'formFactor': 'PHONE'|'TABLET',
                'platform': 'ANDROID'|'IOS',
                'os': 'string',
                'cpu': {
                    'frequency': 'string',
                    'architecture': 'string',
                    'clock': 123.0
                },
                'resolution': {
                    'width': 123,
                    'height': 123
                },
                'heapSize': 123,
                'memory': 123,
                'image': 'string',
                'carrier': 'string',
                'radio': 'string',
                'remoteAccessEnabled': True|False,
                'remoteDebugEnabled': True|False,
                'fleetType': 'string',
                'fleetName': 'string',
                'instances': [
                    {
                        'arn': 'string',
                        'deviceArn': 'string',
                        'labels': [
                            'string',
                        ],
                        'status': 'IN_USE'|'PREPARING'|'AVAILABLE'|'NOT_AVAILABLE',
                        'udid': 'string',
                        'instanceProfile': {
                            'arn': 'string',
                            'packageCleanup': True|False,
                            'excludeAppPackagesFromCleanup': [
                                'string',
                            ],
                            'rebootAfterUse': True|False,
                            'name': 'string',
                            'description': 'string'
                        }
                    },
                ],
                'availability': 'TEMPORARY_NOT_AVAILABLE'|'BUSY'|'AVAILABLE'|'HIGHLY_AVAILABLE'
            },
            'compatible': True|False,
            'incompatibilityMessages': [
                {
                    'message': 'string',
                    'type': 'ARN'|'PLATFORM'|'FORM_FACTOR'|'MANUFACTURER'|'REMOTE_ACCESS_ENABLED'|'REMOTE_DEBUG_ENABLED'|'APPIUM_VERSION'|'INSTANCE_ARN'|'INSTANCE_LABELS'|'FLEET_TYPE'|'OS_VERSION'|'MODEL'|'AVAILABILITY'
                },
            ]
        },
    ]
}

Response Structure

  • (dict) --

    Represents the result of describe device pool compatibility request.

    • compatibleDevices (list) --

      Information about compatible devices.

      • (dict) --

        Represents a device pool compatibility result.

        • device (dict) --

          The device (phone or tablet) that you wish to return information about.

          • arn (string) --

            The device's ARN.

          • name (string) --

            The device's display name.

          • manufacturer (string) --

            The device's manufacturer name.

          • model (string) --

            The device's model name.

          • modelId (string) --

            The device's model ID.

          • formFactor (string) --

            The device's form factor.

            Allowed values include:

            • PHONE: The phone form factor.
            • TABLET: The tablet form factor.
          • platform (string) --

            The device's platform.

            Allowed values include:

            • ANDROID: The Android platform.
            • IOS: The iOS platform.
          • os (string) --

            The device's operating system type.

          • cpu (dict) --

            Information about the device's CPU.

            • frequency (string) --

              The CPU's frequency.

            • architecture (string) --

              The CPU's architecture, for example x86 or ARM.

            • clock (float) --

              The clock speed of the device's CPU, expressed in hertz (Hz). For example, a 1.2 GHz CPU is expressed as 1200000000.

          • resolution (dict) --

            The resolution of the device.

            • width (integer) --

              The screen resolution's width, expressed in pixels.

            • height (integer) --

              The screen resolution's height, expressed in pixels.

          • heapSize (integer) --

            The device's heap size, expressed in bytes.

          • memory (integer) --

            The device's total memory size, expressed in bytes.

          • image (string) --

            The device's image name.

          • carrier (string) --

            The device's carrier.

          • radio (string) --

            The device's radio.

          • remoteAccessEnabled (boolean) --

            Specifies whether remote access has been enabled for the specified device.

          • remoteDebugEnabled (boolean) --

            This flag is set to true if remote debugging is enabled for the device.

            Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

          • fleetType (string) --

            The type of fleet to which this device belongs. Possible values for fleet type are PRIVATE and PUBLIC.

          • fleetName (string) --

            The name of the fleet to which this device belongs.

          • instances (list) --

            The instances belonging to this device.

            • (dict) --

              Represents the device instance.

              • arn (string) --

                The Amazon Resource Name (ARN) of the device instance.

              • deviceArn (string) --

                The Amazon Resource Name (ARN) of the device.

              • labels (list) --

                An array of strings describing the device instance.

                • (string) --
              • status (string) --

                The status of the device instance. Valid values are listed below.

              • udid (string) --

                Unique device identifier for the device instance.

              • instanceProfile (dict) --

                A object containing information about the instance profile.

                • arn (string) --

                  The Amazon Resource Name (ARN) of the instance profile.

                • packageCleanup (boolean) --

                  When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.

                • excludeAppPackagesFromCleanup (list) --

                  An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

                  The list of packages is only considered if you set packageCleanup to true .

                  • (string) --
                • rebootAfterUse (boolean) --

                  When set to true , Device Farm will reboot the instance after a test run. The default value is true .

                • name (string) --

                  The name of the instance profile.

                • description (string) --

                  The description of the instance profile.

          • availability (string) --

            Reflects how likely a device will be available for a test run. It is currently available in the ListDevices and GetDevice API methods.

        • compatible (boolean) --

          Whether the result was compatible with the device pool.

        • incompatibilityMessages (list) --

          Information about the compatibility.

          • (dict) --

            Represents information about incompatibility.

            • message (string) --

              A message about the incompatibility.

            • type (string) --

              The type of incompatibility.

              Allowed values include:

              • ARN: The ARN.
              • FORM_FACTOR: The form factor (for example, phone or tablet).
              • MANUFACTURER: The manufacturer.
              • PLATFORM: The platform (for example, Android or iOS).
              • REMOTE_ACCESS_ENABLED: Whether the device is enabled for remote access.
              • APPIUM_VERSION: The Appium version for the test.
    • incompatibleDevices (list) --

      Information about incompatible devices.

      • (dict) --

        Represents a device pool compatibility result.

        • device (dict) --

          The device (phone or tablet) that you wish to return information about.

          • arn (string) --

            The device's ARN.

          • name (string) --

            The device's display name.

          • manufacturer (string) --

            The device's manufacturer name.

          • model (string) --

            The device's model name.

          • modelId (string) --

            The device's model ID.

          • formFactor (string) --

            The device's form factor.

            Allowed values include:

            • PHONE: The phone form factor.
            • TABLET: The tablet form factor.
          • platform (string) --

            The device's platform.

            Allowed values include:

            • ANDROID: The Android platform.
            • IOS: The iOS platform.
          • os (string) --

            The device's operating system type.

          • cpu (dict) --

            Information about the device's CPU.

            • frequency (string) --

              The CPU's frequency.

            • architecture (string) --

              The CPU's architecture, for example x86 or ARM.

            • clock (float) --

              The clock speed of the device's CPU, expressed in hertz (Hz). For example, a 1.2 GHz CPU is expressed as 1200000000.

          • resolution (dict) --

            The resolution of the device.

            • width (integer) --

              The screen resolution's width, expressed in pixels.

            • height (integer) --

              The screen resolution's height, expressed in pixels.

          • heapSize (integer) --

            The device's heap size, expressed in bytes.

          • memory (integer) --

            The device's total memory size, expressed in bytes.

          • image (string) --

            The device's image name.

          • carrier (string) --

            The device's carrier.

          • radio (string) --

            The device's radio.

          • remoteAccessEnabled (boolean) --

            Specifies whether remote access has been enabled for the specified device.

          • remoteDebugEnabled (boolean) --

            This flag is set to true if remote debugging is enabled for the device.

            Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

          • fleetType (string) --

            The type of fleet to which this device belongs. Possible values for fleet type are PRIVATE and PUBLIC.

          • fleetName (string) --

            The name of the fleet to which this device belongs.

          • instances (list) --

            The instances belonging to this device.

            • (dict) --

              Represents the device instance.

              • arn (string) --

                The Amazon Resource Name (ARN) of the device instance.

              • deviceArn (string) --

                The Amazon Resource Name (ARN) of the device.

              • labels (list) --

                An array of strings describing the device instance.

                • (string) --
              • status (string) --

                The status of the device instance. Valid values are listed below.

              • udid (string) --

                Unique device identifier for the device instance.

              • instanceProfile (dict) --

                A object containing information about the instance profile.

                • arn (string) --

                  The Amazon Resource Name (ARN) of the instance profile.

                • packageCleanup (boolean) --

                  When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.

                • excludeAppPackagesFromCleanup (list) --

                  An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

                  The list of packages is only considered if you set packageCleanup to true .

                  • (string) --
                • rebootAfterUse (boolean) --

                  When set to true , Device Farm will reboot the instance after a test run. The default value is true .

                • name (string) --

                  The name of the instance profile.

                • description (string) --

                  The description of the instance profile.

          • availability (string) --

            Reflects how likely a device will be available for a test run. It is currently available in the ListDevices and GetDevice API methods.

        • compatible (boolean) --

          Whether the result was compatible with the device pool.

        • incompatibilityMessages (list) --

          Information about the compatibility.

          • (dict) --

            Represents information about incompatibility.

            • message (string) --

              A message about the incompatibility.

            • type (string) --

              The type of incompatibility.

              Allowed values include:

              • ARN: The ARN.
              • FORM_FACTOR: The form factor (for example, phone or tablet).
              • MANUFACTURER: The manufacturer.
              • PLATFORM: The platform (for example, Android or iOS).
              • REMOTE_ACCESS_ENABLED: Whether the device is enabled for remote access.
              • APPIUM_VERSION: The Appium version for the test.

Examples

The following example returns information about the compatibility of a specific device pool, given its ARN.

response = client.get_device_pool_compatibility(
    appArn='arn:aws:devicefarm:us-west-2::app:123-456-EXAMPLE-GUID',
    # You can get the device pool ARN by using the list-device-pools CLI command.
    devicePoolArn='arn:aws:devicefarm:us-west-2::devicepool:123-456-EXAMPLE-GUID',
    testType='APPIUM_PYTHON',
)

print(response)

Expected Output:

{
    'compatibleDevices': [
    ],
    'incompatibleDevices': [
    ],
    'ResponseMetadata': {
        '...': '...',
    },
}
get_instance_profile(**kwargs)

Returns information about the specified instance profile.

See also: AWS API Documentation

Request Syntax

response = client.get_instance_profile(
    arn='string'
)
Parameters
arn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of your instance profile.

Return type
dict
Returns
Response Syntax
{
    'instanceProfile': {
        'arn': 'string',
        'packageCleanup': True|False,
        'excludeAppPackagesFromCleanup': [
            'string',
        ],
        'rebootAfterUse': True|False,
        'name': 'string',
        'description': 'string'
    }
}

Response Structure

  • (dict) --
    • instanceProfile (dict) --

      An object containing information about your instance profile.

      • arn (string) --

        The Amazon Resource Name (ARN) of the instance profile.

      • packageCleanup (boolean) --

        When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.

      • excludeAppPackagesFromCleanup (list) --

        An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

        The list of packages is only considered if you set packageCleanup to true .

        • (string) --
      • rebootAfterUse (boolean) --

        When set to true , Device Farm will reboot the instance after a test run. The default value is true .

      • name (string) --

        The name of the instance profile.

      • description (string) --

        The description of the instance profile.

get_job(**kwargs)

Gets information about a job.

See also: AWS API Documentation

Request Syntax

response = client.get_job(
    arn='string'
)
Parameters
arn (string) --

[REQUIRED]

The job's ARN.

Return type
dict
Returns
Response Syntax
{
    'job': {
        'arn': 'string',
        'name': 'string',
        'type': 'BUILTIN_FUZZ'|'BUILTIN_EXPLORER'|'WEB_PERFORMANCE_PROFILE'|'APPIUM_JAVA_JUNIT'|'APPIUM_JAVA_TESTNG'|'APPIUM_PYTHON'|'APPIUM_NODE'|'APPIUM_RUBY'|'APPIUM_WEB_JAVA_JUNIT'|'APPIUM_WEB_JAVA_TESTNG'|'APPIUM_WEB_PYTHON'|'APPIUM_WEB_NODE'|'APPIUM_WEB_RUBY'|'CALABASH'|'INSTRUMENTATION'|'UIAUTOMATION'|'UIAUTOMATOR'|'XCTEST'|'XCTEST_UI'|'REMOTE_ACCESS_RECORD'|'REMOTE_ACCESS_REPLAY',
        'created': datetime(2015, 1, 1),
        'status': 'PENDING'|'PENDING_CONCURRENCY'|'PENDING_DEVICE'|'PROCESSING'|'SCHEDULING'|'PREPARING'|'RUNNING'|'COMPLETED'|'STOPPING',
        'result': 'PENDING'|'PASSED'|'WARNED'|'FAILED'|'SKIPPED'|'ERRORED'|'STOPPED',
        'started': datetime(2015, 1, 1),
        'stopped': datetime(2015, 1, 1),
        'counters': {
            'total': 123,
            'passed': 123,
            'failed': 123,
            'warned': 123,
            'errored': 123,
            'stopped': 123,
            'skipped': 123
        },
        'message': 'string',
        'device': {
            'arn': 'string',
            'name': 'string',
            'manufacturer': 'string',
            'model': 'string',
            'modelId': 'string',
            'formFactor': 'PHONE'|'TABLET',
            'platform': 'ANDROID'|'IOS',
            'os': 'string',
            'cpu': {
                'frequency': 'string',
                'architecture': 'string',
                'clock': 123.0
            },
            'resolution': {
                'width': 123,
                'height': 123
            },
            'heapSize': 123,
            'memory': 123,
            'image': 'string',
            'carrier': 'string',
            'radio': 'string',
            'remoteAccessEnabled': True|False,
            'remoteDebugEnabled': True|False,
            'fleetType': 'string',
            'fleetName': 'string',
            'instances': [
                {
                    'arn': 'string',
                    'deviceArn': 'string',
                    'labels': [
                        'string',
                    ],
                    'status': 'IN_USE'|'PREPARING'|'AVAILABLE'|'NOT_AVAILABLE',
                    'udid': 'string',
                    'instanceProfile': {
                        'arn': 'string',
                        'packageCleanup': True|False,
                        'excludeAppPackagesFromCleanup': [
                            'string',
                        ],
                        'rebootAfterUse': True|False,
                        'name': 'string',
                        'description': 'string'
                    }
                },
            ],
            'availability': 'TEMPORARY_NOT_AVAILABLE'|'BUSY'|'AVAILABLE'|'HIGHLY_AVAILABLE'
        },
        'instanceArn': 'string',
        'deviceMinutes': {
            'total': 123.0,
            'metered': 123.0,
            'unmetered': 123.0
        },
        'videoEndpoint': 'string',
        'videoCapture': True|False
    }
}

Response Structure

  • (dict) --

    Represents the result of a get job request.

    • job (dict) --

      An object containing information about the requested job.

      • arn (string) --

        The job's ARN.

      • name (string) --

        The job's name.

      • type (string) --

        The job's type.

        Allowed values include the following:

        • BUILTIN_FUZZ: The built-in fuzz type.
        • BUILTIN_EXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.
        • APPIUM_JAVA_JUNIT: The Appium Java JUnit type.
        • APPIUM_JAVA_TESTNG: The Appium Java TestNG type.
        • APPIUM_PYTHON: The Appium Python type.
        • APPIUM_NODE: The Appium Node.js type.
        • APPIUM_RUBY: The Appium Ruby type.
        • APPIUM_WEB_JAVA_JUNIT: The Appium Java JUnit type for web apps.
        • APPIUM_WEB_JAVA_TESTNG: The Appium Java TestNG type for web apps.
        • APPIUM_WEB_PYTHON: The Appium Python type for web apps.
        • APPIUM_WEB_NODE: The Appium Node.js type for web apps.
        • APPIUM_WEB_RUBY: The Appium Ruby test type for web apps.
        • CALABASH: The Calabash type.
        • INSTRUMENTATION: The Instrumentation type.
        • UIAUTOMATION: The uiautomation type.
        • UIAUTOMATOR: The uiautomator type.
        • XCTEST: The Xcode test type.
        • XCTEST_UI: The Xcode UI test type.
      • created (datetime) --

        When the job was created.

      • status (string) --

        The job's status.

        Allowed values include:

        • PENDING: A pending status.
        • PENDING_CONCURRENCY: A pending concurrency status.
        • PENDING_DEVICE: A pending device status.
        • PROCESSING: A processing status.
        • SCHEDULING: A scheduling status.
        • PREPARING: A preparing status.
        • RUNNING: A running status.
        • COMPLETED: A completed status.
        • STOPPING: A stopping status.
      • result (string) --

        The job's result.

        Allowed values include:

        • PENDING: A pending condition.
        • PASSED: A passing condition.
        • WARNED: A warning condition.
        • FAILED: A failed condition.
        • SKIPPED: A skipped condition.
        • ERRORED: An error condition.
        • STOPPED: A stopped condition.
      • started (datetime) --

        The job's start time.

      • stopped (datetime) --

        The job's stop time.

      • counters (dict) --

        The job's result counters.

        • total (integer) --

          The total number of entities.

        • passed (integer) --

          The number of passed entities.

        • failed (integer) --

          The number of failed entities.

        • warned (integer) --

          The number of warned entities.

        • errored (integer) --

          The number of errored entities.

        • stopped (integer) --

          The number of stopped entities.

        • skipped (integer) --

          The number of skipped entities.

      • message (string) --

        A message about the job's result.

      • device (dict) --

        The device (phone or tablet).

        • arn (string) --

          The device's ARN.

        • name (string) --

          The device's display name.

        • manufacturer (string) --

          The device's manufacturer name.

        • model (string) --

          The device's model name.

        • modelId (string) --

          The device's model ID.

        • formFactor (string) --

          The device's form factor.

          Allowed values include:

          • PHONE: The phone form factor.
          • TABLET: The tablet form factor.
        • platform (string) --

          The device's platform.

          Allowed values include:

          • ANDROID: The Android platform.
          • IOS: The iOS platform.
        • os (string) --

          The device's operating system type.

        • cpu (dict) --

          Information about the device's CPU.

          • frequency (string) --

            The CPU's frequency.

          • architecture (string) --

            The CPU's architecture, for example x86 or ARM.

          • clock (float) --

            The clock speed of the device's CPU, expressed in hertz (Hz). For example, a 1.2 GHz CPU is expressed as 1200000000.

        • resolution (dict) --

          The resolution of the device.

          • width (integer) --

            The screen resolution's width, expressed in pixels.

          • height (integer) --

            The screen resolution's height, expressed in pixels.

        • heapSize (integer) --

          The device's heap size, expressed in bytes.

        • memory (integer) --

          The device's total memory size, expressed in bytes.

        • image (string) --

          The device's image name.

        • carrier (string) --

          The device's carrier.

        • radio (string) --

          The device's radio.

        • remoteAccessEnabled (boolean) --

          Specifies whether remote access has been enabled for the specified device.

        • remoteDebugEnabled (boolean) --

          This flag is set to true if remote debugging is enabled for the device.

          Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .
        • fleetType (string) --

          The type of fleet to which this device belongs. Possible values for fleet type are PRIVATE and PUBLIC.

        • fleetName (string) --

          The name of the fleet to which this device belongs.

        • instances (list) --

          The instances belonging to this device.

          • (dict) --

            Represents the device instance.

            • arn (string) --

              The Amazon Resource Name (ARN) of the device instance.

            • deviceArn (string) --

              The Amazon Resource Name (ARN) of the device.

            • labels (list) --

              An array of strings describing the device instance.

              • (string) --
            • status (string) --

              The status of the device instance. Valid values are listed below.

            • udid (string) --

              Unique device identifier for the device instance.

            • instanceProfile (dict) --

              A object containing information about the instance profile.

              • arn (string) --

                The Amazon Resource Name (ARN) of the instance profile.

              • packageCleanup (boolean) --

                When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.

              • excludeAppPackagesFromCleanup (list) --

                An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

                The list of packages is only considered if you set packageCleanup to true .

                • (string) --
              • rebootAfterUse (boolean) --

                When set to true , Device Farm will reboot the instance after a test run. The default value is true .

              • name (string) --

                The name of the instance profile.

              • description (string) --

                The description of the instance profile.

        • availability (string) --

          Reflects how likely a device will be available for a test run. It is currently available in the ListDevices and GetDevice API methods.

      • instanceArn (string) --

        The Amazon Resource Name (ARN) of the instance.

      • deviceMinutes (dict) --

        Represents the total (metered or unmetered) minutes used by the job.

        • total (float) --

          When specified, represents the total minutes used by the resource to run tests.

        • metered (float) --

          When specified, represents only the sum of metered minutes used by the resource to run tests.

        • unmetered (float) --

          When specified, represents only the sum of unmetered minutes used by the resource to run tests.

      • videoEndpoint (string) --

        The endpoint for streaming device video.

      • videoCapture (boolean) --

        This value is set to true if video capture is enabled; otherwise, it is set to false.

Examples

The following example returns information about a specific job.

response = client.get_job(
    # You can get the job ARN by using the list-jobs CLI command.
    arn='arn:aws:devicefarm:us-west-2::job:123-456-EXAMPLE-GUID',
)

print(response)

Expected Output:

{
    'job': {
    },
    'ResponseMetadata': {
        '...': '...',
    },
}
get_network_profile(**kwargs)

Returns information about a network profile.

See also: AWS API Documentation

Request Syntax

response = client.get_network_profile(
    arn='string'
)
Parameters
arn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the network profile you want to return information about.

Return type
dict
Returns
Response Syntax
{
    'networkProfile': {
        'arn': 'string',
        'name': 'string',
        'description': 'string',
        'type': 'CURATED'|'PRIVATE',
        'uplinkBandwidthBits': 123,
        'downlinkBandwidthBits': 123,
        'uplinkDelayMs': 123,
        'downlinkDelayMs': 123,
        'uplinkJitterMs': 123,
        'downlinkJitterMs': 123,
        'uplinkLossPercent': 123,
        'downlinkLossPercent': 123
    }
}

Response Structure

  • (dict) --
    • networkProfile (dict) --

      The network profile.

      • arn (string) --

        The Amazon Resource Name (ARN) of the network profile.

      • name (string) --

        The name of the network profile.

      • description (string) --

        The description of the network profile.

      • type (string) --

        The type of network profile. Valid values are listed below.

      • uplinkBandwidthBits (integer) --

        The data throughput rate in bits per second, as an integer from 0 to 104857600.

      • downlinkBandwidthBits (integer) --

        The data throughput rate in bits per second, as an integer from 0 to 104857600.

      • uplinkDelayMs (integer) --

        Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.

      • downlinkDelayMs (integer) --

        Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.

      • uplinkJitterMs (integer) --

        Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.

      • downlinkJitterMs (integer) --

        Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.

      • uplinkLossPercent (integer) --

        Proportion of transmitted packets that fail to arrive from 0 to 100 percent.

      • downlinkLossPercent (integer) --

        Proportion of received packets that fail to arrive from 0 to 100 percent.

get_offering_status(**kwargs)

Gets the current status and future status of all offerings purchased by an AWS account. The response indicates how many offerings are currently available and the offerings that will be available in the next period. The API returns a NotEligible error if the user is not permitted to invoke the operation. Please contact aws-devicefarm-support@amazon.com if you believe that you should be able to invoke this operation.

See also: AWS API Documentation

Request Syntax

response = client.get_offering_status(
    nextToken='string'
)
Parameters
nextToken (string) -- An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
Return type
dict
Returns
Response Syntax
{
    'current': {
        'string': {
            'type': 'PURCHASE'|'RENEW'|'SYSTEM',
            'offering': {
                'id': 'string',
                'description': 'string',
                'type': 'RECURRING',
                'platform': 'ANDROID'|'IOS',
                'recurringCharges': [
                    {
                        'cost': {
                            'amount': 123.0,
                            'currencyCode': 'USD'
                        },
                        'frequency': 'MONTHLY'
                    },
                ]
            },
            'quantity': 123,
            'effectiveOn': datetime(2015, 1, 1)
        }
    },
    'nextPeriod': {
        'string': {
            'type': 'PURCHASE'|'RENEW'|'SYSTEM',
            'offering': {
                'id': 'string',
                'description': 'string',
                'type': 'RECURRING',
                'platform': 'ANDROID'|'IOS',
                'recurringCharges': [
                    {
                        'cost': {
                            'amount': 123.0,
                            'currencyCode': 'USD'
                        },
                        'frequency': 'MONTHLY'
                    },
                ]
            },
            'quantity': 123,
            'effectiveOn': datetime(2015, 1, 1)
        }
    },
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    Returns the status result for a device offering.

    • current (dict) --

      When specified, gets the offering status for the current period.

      • (string) --
        • (dict) --

          The status of the offering.

          • type (string) --

            The type specified for the offering status.

          • offering (dict) --

            Represents the metadata of an offering status.

            • id (string) --

              The ID that corresponds to a device offering.

            • description (string) --

              A string describing the offering.

            • type (string) --

              The type of offering (e.g., "RECURRING") for a device.

            • platform (string) --

              The platform of the device (e.g., ANDROID or IOS).

            • recurringCharges (list) --

              Specifies whether there are recurring charges for the offering.

              • (dict) --

                Specifies whether charges for devices will be recurring.

                • cost (dict) --

                  The cost of the recurring charge.

                  • amount (float) --

                    The numerical amount of an offering or transaction.

                  • currencyCode (string) --

                    The currency code of a monetary amount. For example, USD means "U.S. dollars."

                • frequency (string) --

                  The frequency in which charges will recur.

          • quantity (integer) --

            The number of available devices in the offering.

          • effectiveOn (datetime) --

            The date on which the offering is effective.

    • nextPeriod (dict) --

      When specified, gets the offering status for the next period.

      • (string) --
        • (dict) --

          The status of the offering.

          • type (string) --

            The type specified for the offering status.

          • offering (dict) --

            Represents the metadata of an offering status.

            • id (string) --

              The ID that corresponds to a device offering.

            • description (string) --

              A string describing the offering.

            • type (string) --

              The type of offering (e.g., "RECURRING") for a device.

            • platform (string) --

              The platform of the device (e.g., ANDROID or IOS).

            • recurringCharges (list) --

              Specifies whether there are recurring charges for the offering.

              • (dict) --

                Specifies whether charges for devices will be recurring.

                • cost (dict) --

                  The cost of the recurring charge.

                  • amount (float) --

                    The numerical amount of an offering or transaction.

                  • currencyCode (string) --

                    The currency code of a monetary amount. For example, USD means "U.S. dollars."

                • frequency (string) --

                  The frequency in which charges will recur.

          • quantity (integer) --

            The number of available devices in the offering.

          • effectiveOn (datetime) --

            The date on which the offering is effective.

    • nextToken (string) --

      An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.

Examples

The following example returns information about Device Farm offerings available to your account.

response = client.get_offering_status(
    # A dynamically generated value, used for paginating results.
    nextToken='RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE=',
)

print(response)

Expected Output:

{
    'current': {
        'D68B3C05-1BA6-4360-BC69-12345EXAMPLE': {
            'offering': {
                'type': 'RECURRING',
                'description': 'Android Remote Access Unmetered Device Slot',
                'id': 'D68B3C05-1BA6-4360-BC69-12345EXAMPLE',
                'platform': 'ANDROID',
            },
            'quantity': 1,
        },
    },
    'nextPeriod': {
        'D68B3C05-1BA6-4360-BC69-12345EXAMPLE': {
            'effectiveOn': datetime(2016, 9, 1, 0, 0, 0, 3, 245, 0),
            'offering': {
                'type': 'RECURRING',
                'description': 'Android Remote Access Unmetered Device Slot',
                'id': 'D68B3C05-1BA6-4360-BC69-12345EXAMPLE',
                'platform': 'ANDROID',
            },
            'quantity': 1,
        },
    },
    'ResponseMetadata': {
        '...': '...',
    },
}
get_paginator(operation_name)

Create a paginator for an operation.

Parameters
operation_name (string) -- The operation name. This is the same name as the method name on the client. For example, if the method name is create_foo, and you'd normally invoke the operation as client.create_foo(**kwargs), if the create_foo operation can be paginated, you can use the call client.get_paginator("create_foo").
Raises OperationNotPageableError
Raised if the operation is not pageable. You can use the client.can_paginate method to check if an operation is pageable.
Return type
L{botocore.paginate.Paginator}
Returns
A paginator object.
get_project(**kwargs)

Gets information about a project.

See also: AWS API Documentation

Request Syntax

response = client.get_project(
    arn='string'
)
Parameters
arn (string) --

[REQUIRED]

The project's ARN.

Return type
dict
Returns
Response Syntax
{
    'project': {
        'arn': 'string',
        'name': 'string',
        'defaultJobTimeoutMinutes': 123,
        'created': datetime(2015, 1, 1)
    }
}

Response Structure

  • (dict) --

    Represents the result of a get project request.

    • project (dict) --

      The project you wish to get information about.

      • arn (string) --

        The project's ARN.

      • name (string) --

        The project's name.

      • defaultJobTimeoutMinutes (integer) --

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

      • created (datetime) --

        When the project was created.

Examples

The following example gets information about a specific project.

response = client.get_project(
    # You can get the project ARN by using the list-projects CLI command.
    arn='arn:aws:devicefarm:us-west-2:123456789101:project:5e01a8c7-c861-4c0a-b1d5-12345EXAMPLE',
)

print(response)

Expected Output:

{
    'project': {
        'name': 'My Project',
        'arn': 'arn:aws:devicefarm:us-west-2:123456789101:project:5e01a8c7-c861-4c0a-b1d5-12345EXAMPLE',
        'created': datetime(2016, 8, 31, 16, 28, 59, 2, 244, 0),
    },
    'ResponseMetadata': {
        '...': '...',
    },
}
get_remote_access_session(**kwargs)

Returns a link to a currently running remote access session.

See also: AWS API Documentation

Request Syntax

response = client.get_remote_access_session(
    arn='string'
)
Parameters
arn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the remote access session about which you want to get session information.

Return type
dict
Returns
Response Syntax
{
    'remoteAccessSession': {
        'arn': 'string',
        'name': 'string',
        'created': datetime(2015, 1, 1),
        'status': 'PENDING'|'PENDING_CONCURRENCY'|'PENDING_DEVICE'|'PROCESSING'|'SCHEDULING'|'PREPARING'|'RUNNING'|'COMPLETED'|'STOPPING',
        'result': 'PENDING'|'PASSED'|'WARNED'|'FAILED'|'SKIPPED'|'ERRORED'|'STOPPED',
        'message': 'string',
        'started': datetime(2015, 1, 1),
        'stopped': datetime(2015, 1, 1),
        'device': {
            'arn': 'string',
            'name': 'string',
            'manufacturer': 'string',
            'model': 'string',
            'modelId': 'string',
            'formFactor': 'PHONE'|'TABLET',
            'platform': 'ANDROID'|'IOS',
            'os': 'string',
            'cpu': {
                'frequency': 'string',
                'architecture': 'string',
                'clock': 123.0
            },
            'resolution': {
                'width': 123,
                'height': 123
            },
            'heapSize': 123,
            'memory': 123,
            'image': 'string',
            'carrier': 'string',
            'radio': 'string',
            'remoteAccessEnabled': True|False,
            'remoteDebugEnabled': True|False,
            'fleetType': 'string',
            'fleetName': 'string',
            'instances': [
                {
                    'arn': 'string',
                    'deviceArn': 'string',
                    'labels': [
                        'string',
                    ],
                    'status': 'IN_USE'|'PREPARING'|'AVAILABLE'|'NOT_AVAILABLE',
                    'udid': 'string',
                    'instanceProfile': {
                        'arn': 'string',
                        'packageCleanup': True|False,
                        'excludeAppPackagesFromCleanup': [
                            'string',
                        ],
                        'rebootAfterUse': True|False,
                        'name': 'string',
                        'description': 'string'
                    }
                },
            ],
            'availability': 'TEMPORARY_NOT_AVAILABLE'|'BUSY'|'AVAILABLE'|'HIGHLY_AVAILABLE'
        },
        'instanceArn': 'string',
        'remoteDebugEnabled': True|False,
        'remoteRecordEnabled': True|False,
        'remoteRecordAppArn': 'string',
        'hostAddress': 'string',
        'clientId': 'string',
        'billingMethod': 'METERED'|'UNMETERED',
        'deviceMinutes': {
            'total': 123.0,
            'metered': 123.0,
            'unmetered': 123.0
        },
        'endpoint': 'string',
        'deviceUdid': 'string',
        'interactionMode': 'INTERACTIVE'|'NO_VIDEO'|'VIDEO_ONLY',
        'skipAppResign': True|False
    }
}

Response Structure

  • (dict) --

    Represents the response from the server that lists detailed information about the remote access session.

    • remoteAccessSession (dict) --

      A container that lists detailed information about the remote access session.

      • arn (string) --

        The Amazon Resource Name (ARN) of the remote access session.

      • name (string) --

        The name of the remote access session.

      • created (datetime) --

        The date and time the remote access session was created.

      • status (string) --

        The status of the remote access session. Can be any of the following:

        • PENDING: A pending status.
        • PENDING_CONCURRENCY: A pending concurrency status.
        • PENDING_DEVICE: A pending device status.
        • PROCESSING: A processing status.
        • SCHEDULING: A scheduling status.
        • PREPARING: A preparing status.
        • RUNNING: A running status.
        • COMPLETED: A completed status.
        • STOPPING: A stopping status.
      • result (string) --

        The result of the remote access session. Can be any of the following:

        • PENDING: A pending condition.
        • PASSED: A passing condition.
        • WARNED: A warning condition.
        • FAILED: A failed condition.
        • SKIPPED: A skipped condition.
        • ERRORED: An error condition.
        • STOPPED: A stopped condition.
      • message (string) --

        A message about the remote access session.

      • started (datetime) --

        The date and time the remote access session was started.

      • stopped (datetime) --

        The date and time the remote access session was stopped.

      • device (dict) --

        The device (phone or tablet) used in the remote access session.

        • arn (string) --

          The device's ARN.

        • name (string) --

          The device's display name.

        • manufacturer (string) --

          The device's manufacturer name.

        • model (string) --

          The device's model name.

        • modelId (string) --

          The device's model ID.

        • formFactor (string) --

          The device's form factor.

          Allowed values include:

          • PHONE: The phone form factor.
          • TABLET: The tablet form factor.
        • platform (string) --

          The device's platform.

          Allowed values include:

          • ANDROID: The Android platform.
          • IOS: The iOS platform.
        • os (string) --

          The device's operating system type.

        • cpu (dict) --

          Information about the device's CPU.

          • frequency (string) --

            The CPU's frequency.

          • architecture (string) --

            The CPU's architecture, for example x86 or ARM.

          • clock (float) --

            The clock speed of the device's CPU, expressed in hertz (Hz). For example, a 1.2 GHz CPU is expressed as 1200000000.

        • resolution (dict) --

          The resolution of the device.

          • width (integer) --

            The screen resolution's width, expressed in pixels.

          • height (integer) --

            The screen resolution's height, expressed in pixels.

        • heapSize (integer) --

          The device's heap size, expressed in bytes.

        • memory (integer) --

          The device's total memory size, expressed in bytes.

        • image (string) --

          The device's image name.

        • carrier (string) --

          The device's carrier.

        • radio (string) --

          The device's radio.

        • remoteAccessEnabled (boolean) --

          Specifies whether remote access has been enabled for the specified device.

        • remoteDebugEnabled (boolean) --

          This flag is set to true if remote debugging is enabled for the device.

          Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .
        • fleetType (string) --

          The type of fleet to which this device belongs. Possible values for fleet type are PRIVATE and PUBLIC.

        • fleetName (string) --

          The name of the fleet to which this device belongs.

        • instances (list) --

          The instances belonging to this device.

          • (dict) --

            Represents the device instance.

            • arn (string) --

              The Amazon Resource Name (ARN) of the device instance.

            • deviceArn (string) --

              The Amazon Resource Name (ARN) of the device.

            • labels (list) --

              An array of strings describing the device instance.

              • (string) --
            • status (string) --

              The status of the device instance. Valid values are listed below.

            • udid (string) --

              Unique device identifier for the device instance.

            • instanceProfile (dict) --

              A object containing information about the instance profile.

              • arn (string) --

                The Amazon Resource Name (ARN) of the instance profile.

              • packageCleanup (boolean) --

                When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.

              • excludeAppPackagesFromCleanup (list) --

                An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

                The list of packages is only considered if you set packageCleanup to true .

                • (string) --
              • rebootAfterUse (boolean) --

                When set to true , Device Farm will reboot the instance after a test run. The default value is true .

              • name (string) --

                The name of the instance profile.

              • description (string) --

                The description of the instance profile.

        • availability (string) --

          Reflects how likely a device will be available for a test run. It is currently available in the ListDevices and GetDevice API methods.

      • instanceArn (string) --

        The Amazon Resource Name (ARN) of the instance.

      • remoteDebugEnabled (boolean) --

        This flag is set to true if remote debugging is enabled for the remote access session.

        Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .
      • remoteRecordEnabled (boolean) --

        This flag is set to true if remote recording is enabled for the remote access session.

      • remoteRecordAppArn (string) --

        The Amazon Resource Name (ARN) for the app to be recorded in the remote access session.

      • hostAddress (string) --

        IP address of the EC2 host where you need to connect to remotely debug devices. Only returned if remote debugging is enabled for the remote access session.

        Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .
      • clientId (string) --

        Unique identifier of your client for the remote access session. Only returned if remote debugging is enabled for the remote access session.

        Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .
      • billingMethod (string) --

        The billing method of the remote access session. Possible values include METERED or UNMETERED . For more information about metered devices, see AWS Device Farm terminology ."

      • deviceMinutes (dict) --

        The number of minutes a device is used in a remote access session (including setup and teardown minutes).

        • total (float) --

          When specified, represents the total minutes used by the resource to run tests.

        • metered (float) --

          When specified, represents only the sum of metered minutes used by the resource to run tests.

        • unmetered (float) --

          When specified, represents only the sum of unmetered minutes used by the resource to run tests.

      • endpoint (string) --

        The endpoint for the remote access sesssion.

      • deviceUdid (string) --

        Unique device identifier for the remote device. Only returned if remote debugging is enabled for the remote access session.

        Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .
      • interactionMode (string) --

        The interaction mode of the remote access session. Valid values are:

        • INTERACTIVE: You can interact with the iOS device by viewing, touching, and rotating the screen. You cannot run XCUITest framework-based tests in this mode.
        • NO_VIDEO: You are connected to the device but cannot interact with it or view the screen. This mode has the fastest test execution speed. You can run XCUITest framework-based tests in this mode.
        • VIDEO_ONLY: You can view the screen but cannot touch or rotate it. You can run XCUITest framework-based tests and watch the screen in this mode.
      • skipAppResign (boolean) --

        When set to true , for private devices, Device Farm will not sign your app again. For public devices, Device Farm always signs your apps again and this parameter has no effect.

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

Examples

The following example gets a specific remote access session.

response = client.get_remote_access_session(
    # You can get the remote access session ARN by using the list-remote-access-sessions CLI command.
    arn='arn:aws:devicefarm:us-west-2:123456789101:session:EXAMPLE-GUID-123-456',
)

print(response)

Expected Output:

{
    'remoteAccessSession': {
    },
    'ResponseMetadata': {
        '...': '...',
    },
}
get_run(**kwargs)

Gets information about a run.

See also: AWS API Documentation

Request Syntax

response = client.get_run(
    arn='string'
)
Parameters
arn (string) --

[REQUIRED]

The run's ARN.

Return type
dict
Returns
Response Syntax
{
    'run': {
        'arn': 'string',
        'name': 'string',
        'type': 'BUILTIN_FUZZ'|'BUILTIN_EXPLORER'|'WEB_PERFORMANCE_PROFILE'|'APPIUM_JAVA_JUNIT'|'APPIUM_JAVA_TESTNG'|'APPIUM_PYTHON'|'APPIUM_NODE'|'APPIUM_RUBY'|'APPIUM_WEB_JAVA_JUNIT'|'APPIUM_WEB_JAVA_TESTNG'|'APPIUM_WEB_PYTHON'|'APPIUM_WEB_NODE'|'APPIUM_WEB_RUBY'|'CALABASH'|'INSTRUMENTATION'|'UIAUTOMATION'|'UIAUTOMATOR'|'XCTEST'|'XCTEST_UI'|'REMOTE_ACCESS_RECORD'|'REMOTE_ACCESS_REPLAY',
        'platform': 'ANDROID'|'IOS',
        'created': datetime(2015, 1, 1),
        'status': 'PENDING'|'PENDING_CONCURRENCY'|'PENDING_DEVICE'|'PROCESSING'|'SCHEDULING'|'PREPARING'|'RUNNING'|'COMPLETED'|'STOPPING',
        'result': 'PENDING'|'PASSED'|'WARNED'|'FAILED'|'SKIPPED'|'ERRORED'|'STOPPED',
        'started': datetime(2015, 1, 1),
        'stopped': datetime(2015, 1, 1),
        'counters': {
            'total': 123,
            'passed': 123,
            'failed': 123,
            'warned': 123,
            'errored': 123,
            'stopped': 123,
            'skipped': 123
        },
        'message': 'string',
        'totalJobs': 123,
        'completedJobs': 123,
        'billingMethod': 'METERED'|'UNMETERED',
        'deviceMinutes': {
            'total': 123.0,
            'metered': 123.0,
            'unmetered': 123.0
        },
        'networkProfile': {
            'arn': 'string',
            'name': 'string',
            'description': 'string',
            'type': 'CURATED'|'PRIVATE',
            'uplinkBandwidthBits': 123,
            'downlinkBandwidthBits': 123,
            'uplinkDelayMs': 123,
            'downlinkDelayMs': 123,
            'uplinkJitterMs': 123,
            'downlinkJitterMs': 123,
            'uplinkLossPercent': 123,
            'downlinkLossPercent': 123
        },
        'parsingResultUrl': 'string',
        'resultCode': 'PARSING_FAILED'|'VPC_ENDPOINT_SETUP_FAILED',
        'seed': 123,
        'appUpload': 'string',
        'eventCount': 123,
        'jobTimeoutMinutes': 123,
        'devicePoolArn': 'string',
        'locale': 'string',
        'radios': {
            'wifi': True|False,
            'bluetooth': True|False,
            'nfc': True|False,
            'gps': True|False
        },
        'location': {
            'latitude': 123.0,
            'longitude': 123.0
        },
        'customerArtifactPaths': {
            'iosPaths': [
                'string',
            ],
            'androidPaths': [
                'string',
            ],
            'deviceHostPaths': [
                'string',
            ]
        },
        'webUrl': 'string',
        'skipAppResign': True|False,
        'testSpecArn': 'string',
        'deviceSelectionResult': {
            'filters': [
                {
                    'attribute': 'ARN'|'PLATFORM'|'OS_VERSION'|'MODEL'|'AVAILABILITY'|'FORM_FACTOR'|'MANUFACTURER'|'REMOTE_ACCESS_ENABLED'|'REMOTE_DEBUG_ENABLED'|'INSTANCE_ARN'|'INSTANCE_LABELS'|'FLEET_TYPE',
                    'operator': 'EQUALS'|'LESS_THAN'|'LESS_THAN_OR_EQUALS'|'GREATER_THAN'|'GREATER_THAN_OR_EQUALS'|'IN'|'NOT_IN'|'CONTAINS',
                    'values': [
                        'string',
                    ]
                },
            ],
            'matchedDevicesCount': 123,
            'maxDevices': 123
        }
    }
}

Response Structure

  • (dict) --

    Represents the result of a get run request.

    • run (dict) --

      The run you wish to get results from.

      • arn (string) --

        The run's ARN.

      • name (string) --

        The run's name.

      • type (string) --

        The run's type.

        Must be one of the following values:

        • BUILTIN_FUZZ: The built-in fuzz type.
        • BUILTIN_EXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.
        • APPIUM_JAVA_JUNIT: The Appium Java JUnit type.
        • APPIUM_JAVA_TESTNG: The Appium Java TestNG type.
        • APPIUM_PYTHON: The Appium Python type.
        • APPIUM_NODE: The Appium Node.js type.
        • APPIUM_RUBY: The Appium Ruby type.
        • APPIUM_WEB_JAVA_JUNIT: The Appium Java JUnit type for web apps.
        • APPIUM_WEB_JAVA_TESTNG: The Appium Java TestNG type for web apps.
        • APPIUM_WEB_PYTHON: The Appium Python type for web apps.
        • APPIUM_WEB_NODE: The Appium Node.js type for web apps.
        • APPIUM_WEB_RUBY: The Appium Ruby type for web apps.
        • CALABASH: The Calabash type.
        • INSTRUMENTATION: The Instrumentation type.
        • UIAUTOMATION: The uiautomation type.
        • UIAUTOMATOR: The uiautomator type.
        • XCTEST: The Xcode test type.
        • XCTEST_UI: The Xcode UI test type.
      • platform (string) --

        The run's platform.

        Allowed values include:

        • ANDROID: The Android platform.
        • IOS: The iOS platform.
      • created (datetime) --

        When the run was created.

      • status (string) --

        The run's status.

        Allowed values include:

        • PENDING: A pending status.
        • PENDING_CONCURRENCY: A pending concurrency status.
        • PENDING_DEVICE: A pending device status.
        • PROCESSING: A processing status.
        • SCHEDULING: A scheduling status.
        • PREPARING: A preparing status.
        • RUNNING: A running status.
        • COMPLETED: A completed status.
        • STOPPING: A stopping status.
      • result (string) --

        The run's result.

        Allowed values include:

        • PENDING: A pending condition.
        • PASSED: A passing condition.
        • WARNED: A warning condition.
        • FAILED: A failed condition.
        • SKIPPED: A skipped condition.
        • ERRORED: An error condition.
        • STOPPED: A stopped condition.
      • started (datetime) --

        The run's start time.

      • stopped (datetime) --

        The run's stop time.

      • counters (dict) --

        The run's result counters.

        • total (integer) --

          The total number of entities.

        • passed (integer) --

          The number of passed entities.

        • failed (integer) --

          The number of failed entities.

        • warned (integer) --

          The number of warned entities.

        • errored (integer) --

          The number of errored entities.

        • stopped (integer) --

          The number of stopped entities.

        • skipped (integer) --

          The number of skipped entities.

      • message (string) --

        A message about the run's result.

      • totalJobs (integer) --

        The total number of jobs for the run.

      • completedJobs (integer) --

        The total number of completed jobs.

      • billingMethod (string) --

        Specifies the billing method for a test run: metered or unmetered . If the parameter is not specified, the default value is metered .

      • deviceMinutes (dict) --

        Represents the total (metered or unmetered) minutes used by the test run.

        • total (float) --

          When specified, represents the total minutes used by the resource to run tests.

        • metered (float) --

          When specified, represents only the sum of metered minutes used by the resource to run tests.

        • unmetered (float) --

          When specified, represents only the sum of unmetered minutes used by the resource to run tests.

      • networkProfile (dict) --

        The network profile being used for a test run.

        • arn (string) --

          The Amazon Resource Name (ARN) of the network profile.

        • name (string) --

          The name of the network profile.

        • description (string) --

          The description of the network profile.

        • type (string) --

          The type of network profile. Valid values are listed below.

        • uplinkBandwidthBits (integer) --

          The data throughput rate in bits per second, as an integer from 0 to 104857600.

        • downlinkBandwidthBits (integer) --

          The data throughput rate in bits per second, as an integer from 0 to 104857600.

        • uplinkDelayMs (integer) --

          Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.

        • downlinkDelayMs (integer) --

          Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.

        • uplinkJitterMs (integer) --

          Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.

        • downlinkJitterMs (integer) --

          Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.

        • uplinkLossPercent (integer) --

          Proportion of transmitted packets that fail to arrive from 0 to 100 percent.

        • downlinkLossPercent (integer) --

          Proportion of received packets that fail to arrive from 0 to 100 percent.

      • parsingResultUrl (string) --

        Read-only URL for an object in S3 bucket where you can get the parsing results of the test package. If the test package doesn't parse, the reason why it doesn't parse appears in the file that this URL points to.

      • resultCode (string) --

        Supporting field for the result field. Set only if result is SKIPPED . PARSING_FAILED if the result is skipped because of test package parsing failure.

      • seed (integer) --

        For fuzz tests, this is a seed to use for randomizing the UI fuzz test. Using the same seed value between tests ensures identical event sequences.

      • appUpload (string) --

        An app to upload or that has been uploaded.

      • eventCount (integer) --

        For fuzz tests, this is the number of events, between 1 and 10000, that the UI fuzz test should perform.

      • jobTimeoutMinutes (integer) --

        The number of minutes the job will execute before it times out.

      • devicePoolArn (string) --

        The ARN of the device pool for the run.

      • locale (string) --

        Information about the locale that is used for the run.

      • radios (dict) --

        Information about the radio states for the run.

        • wifi (boolean) --

          True if Wi-Fi is enabled at the beginning of the test; otherwise, false.

        • bluetooth (boolean) --

          True if Bluetooth is enabled at the beginning of the test; otherwise, false.

        • nfc (boolean) --

          True if NFC is enabled at the beginning of the test; otherwise, false.

        • gps (boolean) --

          True if GPS is enabled at the beginning of the test; otherwise, false.

      • location (dict) --

        Information about the location that is used for the run.

        • latitude (float) --

          The latitude.

        • longitude (float) --

          The longitude.

      • customerArtifactPaths (dict) --

        Output CustomerArtifactPaths object for the test run.

        • iosPaths (list) --

          Comma-separated list of paths on the iOS device where the artifacts generated by the customer's tests will be pulled from.

          • (string) --
        • androidPaths (list) --

          Comma-separated list of paths on the Android device where the artifacts generated by the customer's tests will be pulled from.

          • (string) --
        • deviceHostPaths (list) --

          Comma-separated list of paths in the test execution environment where the artifacts generated by the customer's tests will be pulled from.

          • (string) --
      • webUrl (string) --

        The Device Farm console URL for the recording of the run.

      • skipAppResign (boolean) --

        When set to true , for private devices, Device Farm will not sign your app again. For public devices, Device Farm always signs your apps again and this parameter has no effect.

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

      • testSpecArn (string) --

        The ARN of the YAML-formatted test specification for the run.

      • deviceSelectionResult (dict) --

        The results of a device filter used to select the devices for a test run.

        • filters (list) --

          The filters in a device selection result.

          • (dict) --

            Represents a device filter used to select a set of devices to be included in a test run. This data structure is passed in as the deviceSelectionConfiguration parameter to ScheduleRun. For an example of the JSON request syntax, see ScheduleRun .

            It is also passed in as the filters parameter to ListDevices. For an example of the JSON request syntax, see ListDevices .

            • attribute (string) --

              The aspect of a device such as platform or model used as the selection criteria in a device filter.

              The supported operators for each attribute are provided in the following list.

              ARN

              The Amazon Resource Name (ARN) of the device. For example, "arn:aws:devicefarm:us-west-2::device:12345Example".

              Supported operators : EQUALS , IN , NOT_IN
              PLATFORM

              The device platform. Valid values are "ANDROID" or "IOS".

              Supported operators : EQUALS
              OS_VERSION

              The operating system version. For example, "10.3.2".

              Supported operators : EQUALS , GREATER_THAN , GREATER_THAN_OR_EQUALS , IN , LESS_THAN , LESS_THAN_OR_EQUALS , NOT_IN
              MODEL

              The device model. For example, "iPad 5th Gen".

              Supported operators : CONTAINS , EQUALS , IN , NOT_IN
              AVAILABILITY

              The current availability of the device. Valid values are "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".

              Supported operators : EQUALS
              FORM_FACTOR

              The device form factor. Valid values are "PHONE" or "TABLET".

              Supported operators : EQUALS
              MANUFACTURER

              The device manufacturer. For example, "Apple".

              Supported operators : EQUALS , IN , NOT_IN
              REMOTE_ACCESS_ENABLED

              Whether the device is enabled for remote access. Valid values are "TRUE" or "FALSE".

              Supported operators : EQUALS
              REMOTE_DEBUG_ENABLED

              Ignored. Whether the device is enabled for remote debugging. Valid values are "TRUE" or "FALSE".

              Supported operators : EQUALS

              This filter will be ignored, as remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

              INSTANCE_ARN

              The Amazon Resource Name (ARN) of the device instance.

              Supported operators : EQUALS , IN , NOT_IN
              INSTANCE_LABELS

              The label of the device instance.

              Supported operators : CONTAINS
              FLEET_TYPE

              The fleet type. Valid values are "PUBLIC" or "PRIVATE".

              Supported operators : EQUALS
            • operator (string) --

              Specifies how Device Farm compares the filter's attribute to the value. For the operators that are supported by each attribute, see the attribute descriptions.

            • values (list) --

              An array of one or more filter values used in a device filter.

              Operator Values
              • The IN and NOT_IN operators can take a values array that has more than one element.
              • The other operators require an array with a single element.
              Attribute Values
              • The PLATFORM attribute can be set to "ANDROID" or "IOS".
              • The AVAILABILITY attribute can be set to "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".
              • The FORM_FACTOR attribute can be set to "PHONE" or "TABLET".
              • The FLEET_TYPE attribute can be set to "PUBLIC" or "PRIVATE".
              • (string) --
        • matchedDevicesCount (integer) --

          The number of devices that matched the device filter selection criteria.

        • maxDevices (integer) --

          The maximum number of devices to be selected by a device filter and included in a test run.

Examples

The following example gets information about a specific test run.

response = client.get_run(
    # You can get the run ARN by using the list-runs CLI command.
    arn='arn:aws:devicefarm:us-west-2:123456789101:run:5e01a8c7-c861-4c0a-b1d5-5ec6e6c6dd23/0fcac17b-6122-44d7-ae5a-12345EXAMPLE',
)

print(response)

Expected Output:

{
    'run': {
        'name': 'My Test Run',
        'type': 'BUILTIN_EXPLORER',
        'arn': 'arn:aws:devicefarm:us-west-2:123456789101:run:5e01a8c7-c861-4c0a-b1d5-5ec6e6c6dd23/0fcac17b-6122-44d7-ae5a-12345EXAMPLE',
        'billingMethod': 'METERED',
        'completedJobs': 0,
        'counters': {
            'errored': 0,
            'failed': 0,
            'passed': 0,
            'skipped': 0,
            'stopped': 0,
            'total': 0,
            'warned': 0,
        },
        'created': datetime(2016, 8, 31, 18, 18, 29, 2, 244, 0),
        'deviceMinutes': {
            'metered': 0.0,
            'total': 0.0,
            'unmetered': 0.0,
        },
        'platform': 'ANDROID',
        'result': 'PENDING',
        'status': 'RUNNING',
        'totalJobs': 3,
    },
    'ResponseMetadata': {
        '...': '...',
    },
}
get_suite(**kwargs)

Gets information about a suite.

See also: AWS API Documentation

Request Syntax

response = client.get_suite(
    arn='string'
)
Parameters
arn (string) --

[REQUIRED]

The suite's ARN.

Return type
dict
Returns
Response Syntax
{
    'suite': {
        'arn': 'string',
        'name': 'string',
        'type': 'BUILTIN_FUZZ'|'BUILTIN_EXPLORER'|'WEB_PERFORMANCE_PROFILE'|'APPIUM_JAVA_JUNIT'|'APPIUM_JAVA_TESTNG'|'APPIUM_PYTHON'|'APPIUM_NODE'|'APPIUM_RUBY'|'APPIUM_WEB_JAVA_JUNIT'|'APPIUM_WEB_JAVA_TESTNG'|'APPIUM_WEB_PYTHON'|'APPIUM_WEB_NODE'|'APPIUM_WEB_RUBY'|'CALABASH'|'INSTRUMENTATION'|'UIAUTOMATION'|'UIAUTOMATOR'|'XCTEST'|'XCTEST_UI'|'REMOTE_ACCESS_RECORD'|'REMOTE_ACCESS_REPLAY',
        'created': datetime(2015, 1, 1),
        'status': 'PENDING'|'PENDING_CONCURRENCY'|'PENDING_DEVICE'|'PROCESSING'|'SCHEDULING'|'PREPARING'|'RUNNING'|'COMPLETED'|'STOPPING',
        'result': 'PENDING'|'PASSED'|'WARNED'|'FAILED'|'SKIPPED'|'ERRORED'|'STOPPED',
        'started': datetime(2015, 1, 1),
        'stopped': datetime(2015, 1, 1),
        'counters': {
            'total': 123,
            'passed': 123,
            'failed': 123,
            'warned': 123,
            'errored': 123,
            'stopped': 123,
            'skipped': 123
        },
        'message': 'string',
        'deviceMinutes': {
            'total': 123.0,
            'metered': 123.0,
            'unmetered': 123.0
        }
    }
}

Response Structure

  • (dict) --

    Represents the result of a get suite request.

    • suite (dict) --

      A collection of one or more tests.

      • arn (string) --

        The suite's ARN.

      • name (string) --

        The suite's name.

      • type (string) --

        The suite's type.

        Must be one of the following values:

        • BUILTIN_FUZZ: The built-in fuzz type.
        • BUILTIN_EXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.
        • APPIUM_JAVA_JUNIT: The Appium Java JUnit type.
        • APPIUM_JAVA_TESTNG: The Appium Java TestNG type.
        • APPIUM_PYTHON: The Appium Python type.
        • APPIUM_NODE: The Appium Node.js type.
        • APPIUM_RUBY: The Appium Ruby type.
        • APPIUM_WEB_JAVA_JUNIT: The Appium Java JUnit type for web apps.
        • APPIUM_WEB_JAVA_TESTNG: The Appium Java TestNG type for web apps.
        • APPIUM_WEB_PYTHON: The Appium Python type for web apps.
        • APPIUM_WEB_NODE: The Appium Node.js type for web apps.
        • APPIUM_WEB_RUBY: The Appium Ruby type for web apps.
        • CALABASH: The Calabash type.
        • INSTRUMENTATION: The Instrumentation type.
        • UIAUTOMATION: The uiautomation type.
        • UIAUTOMATOR: The uiautomator type.
        • XCTEST: The Xcode test type.
        • XCTEST_UI: The Xcode UI test type.
      • created (datetime) --

        When the suite was created.

      • status (string) --

        The suite's status.

        Allowed values include:

        • PENDING: A pending status.
        • PENDING_CONCURRENCY: A pending concurrency status.
        • PENDING_DEVICE: A pending device status.
        • PROCESSING: A processing status.
        • SCHEDULING: A scheduling status.
        • PREPARING: A preparing status.
        • RUNNING: A running status.
        • COMPLETED: A completed status.
        • STOPPING: A stopping status.
      • result (string) --

        The suite's result.

        Allowed values include:

        • PENDING: A pending condition.
        • PASSED: A passing condition.
        • WARNED: A warning condition.
        • FAILED: A failed condition.
        • SKIPPED: A skipped condition.
        • ERRORED: An error condition.
        • STOPPED: A stopped condition.
      • started (datetime) --

        The suite's start time.

      • stopped (datetime) --

        The suite's stop time.

      • counters (dict) --

        The suite's result counters.

        • total (integer) --

          The total number of entities.

        • passed (integer) --

          The number of passed entities.

        • failed (integer) --

          The number of failed entities.

        • warned (integer) --

          The number of warned entities.

        • errored (integer) --

          The number of errored entities.

        • stopped (integer) --

          The number of stopped entities.

        • skipped (integer) --

          The number of skipped entities.

      • message (string) --

        A message about the suite's result.

      • deviceMinutes (dict) --

        Represents the total (metered or unmetered) minutes used by the test suite.

        • total (float) --

          When specified, represents the total minutes used by the resource to run tests.

        • metered (float) --

          When specified, represents only the sum of metered minutes used by the resource to run tests.

        • unmetered (float) --

          When specified, represents only the sum of unmetered minutes used by the resource to run tests.

Examples

The following example gets information about a specific test suite.

response = client.get_suite(
    # You can get the suite ARN by using the list-suites CLI command.
    arn='arn:aws:devicefarm:us-west-2:123456789101:suite:EXAMPLE-GUID-123-456',
)

print(response)

Expected Output:

{
    'suite': {
    },
    'ResponseMetadata': {
        '...': '...',
    },
}
get_test(**kwargs)

Gets information about a test.

See also: AWS API Documentation

Request Syntax

response = client.get_test(
    arn='string'
)
Parameters
arn (string) --

[REQUIRED]

The test's ARN.

Return type
dict
Returns
Response Syntax
{
    'test': {
        'arn': 'string',
        'name': 'string',
        'type': 'BUILTIN_FUZZ'|'BUILTIN_EXPLORER'|'WEB_PERFORMANCE_PROFILE'|'APPIUM_JAVA_JUNIT'|'APPIUM_JAVA_TESTNG'|'APPIUM_PYTHON'|'APPIUM_NODE'|'APPIUM_RUBY'|'APPIUM_WEB_JAVA_JUNIT'|'APPIUM_WEB_JAVA_TESTNG'|'APPIUM_WEB_PYTHON'|'APPIUM_WEB_NODE'|'APPIUM_WEB_RUBY'|'CALABASH'|'INSTRUMENTATION'|'UIAUTOMATION'|'UIAUTOMATOR'|'XCTEST'|'XCTEST_UI'|'REMOTE_ACCESS_RECORD'|'REMOTE_ACCESS_REPLAY',
        'created': datetime(2015, 1, 1),
        'status': 'PENDING'|'PENDING_CONCURRENCY'|'PENDING_DEVICE'|'PROCESSING'|'SCHEDULING'|'PREPARING'|'RUNNING'|'COMPLETED'|'STOPPING',
        'result': 'PENDING'|'PASSED'|'WARNED'|'FAILED'|'SKIPPED'|'ERRORED'|'STOPPED',
        'started': datetime(2015, 1, 1),
        'stopped': datetime(2015, 1, 1),
        'counters': {
            'total': 123,
            'passed': 123,
            'failed': 123,
            'warned': 123,
            'errored': 123,
            'stopped': 123,
            'skipped': 123
        },
        'message': 'string',
        'deviceMinutes': {
            'total': 123.0,
            'metered': 123.0,
            'unmetered': 123.0
        }
    }
}

Response Structure

  • (dict) --

    Represents the result of a get test request.

    • test (dict) --

      A test condition that is evaluated.

      • arn (string) --

        The test's ARN.

      • name (string) --

        The test's name.

      • type (string) --

        The test's type.

        Must be one of the following values:

        • BUILTIN_FUZZ: The built-in fuzz type.
        • BUILTIN_EXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.
        • APPIUM_JAVA_JUNIT: The Appium Java JUnit type.
        • APPIUM_JAVA_TESTNG: The Appium Java TestNG type.
        • APPIUM_PYTHON: The Appium Python type.
        • APPIUM_NODE: The Appium Node.js type.
        • APPIUM_RUBY: The Appium Ruby type.
        • APPIUM_WEB_JAVA_JUNIT: The Appium Java JUnit type for web apps.
        • APPIUM_WEB_JAVA_TESTNG: The Appium Java TestNG type for web apps.
        • APPIUM_WEB_PYTHON: The Appium Python type for web apps.
        • APPIUM_WEB_NODE: The Appium Node.js type for web apps.
        • APPIUM_WEB_RUBY: The Appium Ruby type for web apps.
        • CALABASH: The Calabash type.
        • INSTRUMENTATION: The Instrumentation type.
        • UIAUTOMATION: The uiautomation type.
        • UIAUTOMATOR: The uiautomator type.
        • XCTEST: The Xcode test type.
        • XCTEST_UI: The Xcode UI test type.
      • created (datetime) --

        When the test was created.

      • status (string) --

        The test's status.

        Allowed values include:

        • PENDING: A pending status.
        • PENDING_CONCURRENCY: A pending concurrency status.
        • PENDING_DEVICE: A pending device status.
        • PROCESSING: A processing status.
        • SCHEDULING: A scheduling status.
        • PREPARING: A preparing status.
        • RUNNING: A running status.
        • COMPLETED: A completed status.
        • STOPPING: A stopping status.
      • result (string) --

        The test's result.

        Allowed values include:

        • PENDING: A pending condition.
        • PASSED: A passing condition.
        • WARNED: A warning condition.
        • FAILED: A failed condition.
        • SKIPPED: A skipped condition.
        • ERRORED: An error condition.
        • STOPPED: A stopped condition.
      • started (datetime) --

        The test's start time.

      • stopped (datetime) --

        The test's stop time.

      • counters (dict) --

        The test's result counters.

        • total (integer) --

          The total number of entities.

        • passed (integer) --

          The number of passed entities.

        • failed (integer) --

          The number of failed entities.

        • warned (integer) --

          The number of warned entities.

        • errored (integer) --

          The number of errored entities.

        • stopped (integer) --

          The number of stopped entities.

        • skipped (integer) --

          The number of skipped entities.

      • message (string) --

        A message about the test's result.

      • deviceMinutes (dict) --

        Represents the total (metered or unmetered) minutes used by the test.

        • total (float) --

          When specified, represents the total minutes used by the resource to run tests.

        • metered (float) --

          When specified, represents only the sum of metered minutes used by the resource to run tests.

        • unmetered (float) --

          When specified, represents only the sum of unmetered minutes used by the resource to run tests.

Examples

The following example gets information about a specific test.

response = client.get_test(
    # You can get the test ARN by using the list-tests CLI command.
    arn='arn:aws:devicefarm:us-west-2:123456789101:test:EXAMPLE-GUID-123-456',
)

print(response)

Expected Output:

{
    'test': {
    },
    'ResponseMetadata': {
        '...': '...',
    },
}
get_upload(**kwargs)

Gets information about an upload.

See also: AWS API Documentation

Request Syntax

response = client.get_upload(
    arn='string'
)
Parameters
arn (string) --

[REQUIRED]

The upload's ARN.

Return type
dict
Returns
Response Syntax
{
    'upload': {
        'arn': 'string',
        'name': 'string',
        'created': datetime(2015, 1, 1),
        'type': 'ANDROID_APP'|'IOS_APP'|'WEB_APP'|'EXTERNAL_DATA'|'APPIUM_JAVA_JUNIT_TEST_PACKAGE'|'APPIUM_JAVA_TESTNG_TEST_PACKAGE'|'APPIUM_PYTHON_TEST_PACKAGE'|'APPIUM_NODE_TEST_PACKAGE'|'APPIUM_RUBY_TEST_PACKAGE'|'APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE'|'APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE'|'APPIUM_WEB_PYTHON_TEST_PACKAGE'|'APPIUM_WEB_NODE_TEST_PACKAGE'|'APPIUM_WEB_RUBY_TEST_PACKAGE'|'CALABASH_TEST_PACKAGE'|'INSTRUMENTATION_TEST_PACKAGE'|'UIAUTOMATION_TEST_PACKAGE'|'UIAUTOMATOR_TEST_PACKAGE'|'XCTEST_TEST_PACKAGE'|'XCTEST_UI_TEST_PACKAGE'|'APPIUM_JAVA_JUNIT_TEST_SPEC'|'APPIUM_JAVA_TESTNG_TEST_SPEC'|'APPIUM_PYTHON_TEST_SPEC'|'APPIUM_NODE_TEST_SPEC'|'APPIUM_RUBY_TEST_SPEC'|'APPIUM_WEB_JAVA_JUNIT_TEST_SPEC'|'APPIUM_WEB_JAVA_TESTNG_TEST_SPEC'|'APPIUM_WEB_PYTHON_TEST_SPEC'|'APPIUM_WEB_NODE_TEST_SPEC'|'APPIUM_WEB_RUBY_TEST_SPEC'|'INSTRUMENTATION_TEST_SPEC'|'XCTEST_UI_TEST_SPEC',
        'status': 'INITIALIZED'|'PROCESSING'|'SUCCEEDED'|'FAILED',
        'url': 'string',
        'metadata': 'string',
        'contentType': 'string',
        'message': 'string',
        'category': 'CURATED'|'PRIVATE'
    }
}

Response Structure

  • (dict) --

    Represents the result of a get upload request.

    • upload (dict) --

      An app or a set of one or more tests to upload or that have been uploaded.

      • arn (string) --

        The upload's ARN.

      • name (string) --

        The upload's file name.

      • created (datetime) --

        When the upload was created.

      • type (string) --

        The upload's type.

        Must be one of the following values:

        • ANDROID_APP: An Android upload.
        • IOS_APP: An iOS upload.
        • WEB_APP: A web application upload.
        • EXTERNAL_DATA: An external data upload.
        • APPIUM_JAVA_JUNIT_TEST_PACKAGE: An Appium Java JUnit test package upload.
        • APPIUM_JAVA_TESTNG_TEST_PACKAGE: An Appium Java TestNG test package upload.
        • APPIUM_PYTHON_TEST_PACKAGE: An Appium Python test package upload.
        • APPIUM_NODE_TEST_PACKAGE: An Appium Node.js test package upload.
        • APPIUM_RUBY_TEST_PACKAGE: An Appium Ruby test package upload.
        • APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE: An Appium Java JUnit test package upload for web apps.
        • APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE: An Appium Java TestNG test package upload for web apps.
        • APPIUM_WEB_PYTHON_TEST_PACKAGE: An Appium Python test package upload for web apps.
        • APPIUM_WEB_NODE_TEST_PACKAGE: An Appium Node.js test package upload for web apps.
        • APPIUM_WEB_RUBY_TEST_PACKAGE: An Appium Ruby test package upload for web apps.
        • CALABASH_TEST_PACKAGE: A Calabash test package upload.
        • INSTRUMENTATION_TEST_PACKAGE: An instrumentation upload.
        • UIAUTOMATION_TEST_PACKAGE: A uiautomation test package upload.
        • UIAUTOMATOR_TEST_PACKAGE: A uiautomator test package upload.
        • XCTEST_TEST_PACKAGE: An Xcode test package upload.
        • XCTEST_UI_TEST_PACKAGE: An Xcode UI test package upload.
        • APPIUM_JAVA_JUNIT_TEST_SPEC: An Appium Java JUnit test spec upload.
        • APPIUM_JAVA_TESTNG_TEST_SPEC: An Appium Java TestNG test spec upload.
        • APPIUM_PYTHON_TEST_SPEC: An Appium Python test spec upload.
        • APPIUM_NODE_TEST_SPEC: An Appium Node.js test spec upload.
        • APPIUM_RUBY_TEST_SPEC: An Appium Ruby test spec upload.
        • APPIUM_WEB_JAVA_JUNIT_TEST_SPEC: An Appium Java JUnit test spec upload for a web app.
        • APPIUM_WEB_JAVA_TESTNG_TEST_SPEC: An Appium Java TestNG test spec upload for a web app.
        • APPIUM_WEB_PYTHON_TEST_SPEC: An Appium Python test spec upload for a web app.
        • APPIUM_WEB_NODE_TEST_SPEC: An Appium Node.js test spec upload for a web app.
        • APPIUM_WEB_RUBY_TEST_SPEC: An Appium Ruby test spec upload for a web app.
        • INSTRUMENTATION_TEST_SPEC: An instrumentation test spec upload.
        • XCTEST_UI_TEST_SPEC: An Xcode UI test spec upload.
      • status (string) --

        The upload's status.

        Must be one of the following values:

        • FAILED: A failed status.
        • INITIALIZED: An initialized status.
        • PROCESSING: A processing status.
        • SUCCEEDED: A succeeded status.
      • url (string) --

        The pre-signed Amazon S3 URL that was used to store a file through a corresponding PUT request.

      • metadata (string) --

        The upload's metadata. For example, for Android, this contains information that is parsed from the manifest and is displayed in the AWS Device Farm console after the associated app is uploaded.

      • contentType (string) --

        The upload's content type (for example, "application/octet-stream").

      • message (string) --

        A message about the upload's result.

      • category (string) --

        The upload's category. Allowed values include:

        • CURATED: An upload managed by AWS Device Farm.
        • PRIVATE: An upload managed by the AWS Device Farm customer.

Examples

The following example gets information about a specific upload.

response = client.get_upload(
    # You can get the test ARN by using the list-uploads CLI command.
    arn='arn:aws:devicefarm:us-west-2:123456789101:upload:EXAMPLE-GUID-123-456',
)

print(response)

Expected Output:

{
    'upload': {
    },
    'ResponseMetadata': {
        '...': '...',
    },
}
get_vpce_configuration(**kwargs)

Returns information about the configuration settings for your Amazon Virtual Private Cloud (VPC) endpoint.

See also: AWS API Documentation

Request Syntax

response = client.get_vpce_configuration(
    arn='string'
)
Parameters
arn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the VPC endpoint configuration you want to describe.

Return type
dict
Returns
Response Syntax
{
    'vpceConfiguration': {
        'arn': 'string',
        'vpceConfigurationName': 'string',
        'vpceServiceName': 'string',
        'serviceDnsName': 'string',
        'vpceConfigurationDescription': 'string'
    }
}

Response Structure

  • (dict) --
    • vpceConfiguration (dict) --

      An object containing information about your VPC endpoint configuration.

      • arn (string) --

        The Amazon Resource Name (ARN) of the VPC endpoint configuration.

      • vpceConfigurationName (string) --

        The friendly name you give to your VPC endpoint configuration, to manage your configurations more easily.

      • vpceServiceName (string) --

        The name of the VPC endpoint service running inside your AWS account that you want Device Farm to test.

      • serviceDnsName (string) --

        The DNS name that maps to the private IP address of the service you want to access.

      • vpceConfigurationDescription (string) --

        An optional description, providing more details about your VPC endpoint configuration.

get_waiter(waiter_name)

Returns an object that can wait for some condition.

Parameters
waiter_name (str) -- The name of the waiter to get. See the waiters section of the service docs for a list of available waiters.
Returns
The specified waiter object.
Return type
botocore.waiter.Waiter
install_to_remote_access_session(**kwargs)

Installs an application to the device in a remote access session. For Android applications, the file must be in .apk format. For iOS applications, the file must be in .ipa format.

See also: AWS API Documentation

Request Syntax

response = client.install_to_remote_access_session(
    remoteAccessSessionArn='string',
    appArn='string'
)
Parameters
  • remoteAccessSessionArn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the remote access session about which you are requesting information.

  • appArn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the app about which you are requesting information.

Return type

dict

Returns

Response Syntax

{
    'appUpload': {
        'arn': 'string',
        'name': 'string',
        'created': datetime(2015, 1, 1),
        'type': 'ANDROID_APP'|'IOS_APP'|'WEB_APP'|'EXTERNAL_DATA'|'APPIUM_JAVA_JUNIT_TEST_PACKAGE'|'APPIUM_JAVA_TESTNG_TEST_PACKAGE'|'APPIUM_PYTHON_TEST_PACKAGE'|'APPIUM_NODE_TEST_PACKAGE'|'APPIUM_RUBY_TEST_PACKAGE'|'APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE'|'APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE'|'APPIUM_WEB_PYTHON_TEST_PACKAGE'|'APPIUM_WEB_NODE_TEST_PACKAGE'|'APPIUM_WEB_RUBY_TEST_PACKAGE'|'CALABASH_TEST_PACKAGE'|'INSTRUMENTATION_TEST_PACKAGE'|'UIAUTOMATION_TEST_PACKAGE'|'UIAUTOMATOR_TEST_PACKAGE'|'XCTEST_TEST_PACKAGE'|'XCTEST_UI_TEST_PACKAGE'|'APPIUM_JAVA_JUNIT_TEST_SPEC'|'APPIUM_JAVA_TESTNG_TEST_SPEC'|'APPIUM_PYTHON_TEST_SPEC'|'APPIUM_NODE_TEST_SPEC'|'APPIUM_RUBY_TEST_SPEC'|'APPIUM_WEB_JAVA_JUNIT_TEST_SPEC'|'APPIUM_WEB_JAVA_TESTNG_TEST_SPEC'|'APPIUM_WEB_PYTHON_TEST_SPEC'|'APPIUM_WEB_NODE_TEST_SPEC'|'APPIUM_WEB_RUBY_TEST_SPEC'|'INSTRUMENTATION_TEST_SPEC'|'XCTEST_UI_TEST_SPEC',
        'status': 'INITIALIZED'|'PROCESSING'|'SUCCEEDED'|'FAILED',
        'url': 'string',
        'metadata': 'string',
        'contentType': 'string',
        'message': 'string',
        'category': 'CURATED'|'PRIVATE'
    }
}

Response Structure

  • (dict) --

    Represents the response from the server after AWS Device Farm makes a request to install to a remote access session.

    • appUpload (dict) --

      An app to upload or that has been uploaded.

      • arn (string) --

        The upload's ARN.

      • name (string) --

        The upload's file name.

      • created (datetime) --

        When the upload was created.

      • type (string) --

        The upload's type.

        Must be one of the following values:

        • ANDROID_APP: An Android upload.
        • IOS_APP: An iOS upload.
        • WEB_APP: A web application upload.
        • EXTERNAL_DATA: An external data upload.
        • APPIUM_JAVA_JUNIT_TEST_PACKAGE: An Appium Java JUnit test package upload.
        • APPIUM_JAVA_TESTNG_TEST_PACKAGE: An Appium Java TestNG test package upload.
        • APPIUM_PYTHON_TEST_PACKAGE: An Appium Python test package upload.
        • APPIUM_NODE_TEST_PACKAGE: An Appium Node.js test package upload.
        • APPIUM_RUBY_TEST_PACKAGE: An Appium Ruby test package upload.
        • APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE: An Appium Java JUnit test package upload for web apps.
        • APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE: An Appium Java TestNG test package upload for web apps.
        • APPIUM_WEB_PYTHON_TEST_PACKAGE: An Appium Python test package upload for web apps.
        • APPIUM_WEB_NODE_TEST_PACKAGE: An Appium Node.js test package upload for web apps.
        • APPIUM_WEB_RUBY_TEST_PACKAGE: An Appium Ruby test package upload for web apps.
        • CALABASH_TEST_PACKAGE: A Calabash test package upload.
        • INSTRUMENTATION_TEST_PACKAGE: An instrumentation upload.
        • UIAUTOMATION_TEST_PACKAGE: A uiautomation test package upload.
        • UIAUTOMATOR_TEST_PACKAGE: A uiautomator test package upload.
        • XCTEST_TEST_PACKAGE: An Xcode test package upload.
        • XCTEST_UI_TEST_PACKAGE: An Xcode UI test package upload.
        • APPIUM_JAVA_JUNIT_TEST_SPEC: An Appium Java JUnit test spec upload.
        • APPIUM_JAVA_TESTNG_TEST_SPEC: An Appium Java TestNG test spec upload.
        • APPIUM_PYTHON_TEST_SPEC: An Appium Python test spec upload.
        • APPIUM_NODE_TEST_SPEC: An Appium Node.js test spec upload.
        • APPIUM_RUBY_TEST_SPEC: An Appium Ruby test spec upload.
        • APPIUM_WEB_JAVA_JUNIT_TEST_SPEC: An Appium Java JUnit test spec upload for a web app.
        • APPIUM_WEB_JAVA_TESTNG_TEST_SPEC: An Appium Java TestNG test spec upload for a web app.
        • APPIUM_WEB_PYTHON_TEST_SPEC: An Appium Python test spec upload for a web app.
        • APPIUM_WEB_NODE_TEST_SPEC: An Appium Node.js test spec upload for a web app.
        • APPIUM_WEB_RUBY_TEST_SPEC: An Appium Ruby test spec upload for a web app.
        • INSTRUMENTATION_TEST_SPEC: An instrumentation test spec upload.
        • XCTEST_UI_TEST_SPEC: An Xcode UI test spec upload.
      • status (string) --

        The upload's status.

        Must be one of the following values:

        • FAILED: A failed status.
        • INITIALIZED: An initialized status.
        • PROCESSING: A processing status.
        • SUCCEEDED: A succeeded status.
      • url (string) --

        The pre-signed Amazon S3 URL that was used to store a file through a corresponding PUT request.

      • metadata (string) --

        The upload's metadata. For example, for Android, this contains information that is parsed from the manifest and is displayed in the AWS Device Farm console after the associated app is uploaded.

      • contentType (string) --

        The upload's content type (for example, "application/octet-stream").

      • message (string) --

        A message about the upload's result.

      • category (string) --

        The upload's category. Allowed values include:

        • CURATED: An upload managed by AWS Device Farm.
        • PRIVATE: An upload managed by the AWS Device Farm customer.

Examples

The following example installs a specific app to a device in a specific remote access session.

response = client.install_to_remote_access_session(
    appArn='arn:aws:devicefarm:us-west-2:123456789101:app:EXAMPLE-GUID-123-456',
    # You can get the remote access session ARN by using the list-remote-access-sessions CLI command.
    remoteAccessSessionArn='arn:aws:devicefarm:us-west-2:123456789101:session:EXAMPLE-GUID-123-456',
)

print(response)

Expected Output:

{
    'appUpload': {
    },
    'ResponseMetadata': {
        '...': '...',
    },
}
list_artifacts(**kwargs)

Gets information about artifacts.

See also: AWS API Documentation

Request Syntax

response = client.list_artifacts(
    arn='string',
    type='SCREENSHOT'|'FILE'|'LOG',
    nextToken='string'
)
Parameters
  • arn (string) --

    [REQUIRED]

    The Run, Job, Suite, or Test ARN.

  • type (string) --

    [REQUIRED]

    The artifacts' type.

    Allowed values include:

    • FILE: The artifacts are files.
    • LOG: The artifacts are logs.
    • SCREENSHOT: The artifacts are screenshots.
  • nextToken (string) -- An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
Return type

dict

Returns

Response Syntax

{
    'artifacts': [
        {
            'arn': 'string',
            'name': 'string',
            'type': 'UNKNOWN'|'SCREENSHOT'|'DEVICE_LOG'|'MESSAGE_LOG'|'VIDEO_LOG'|'RESULT_LOG'|'SERVICE_LOG'|'WEBKIT_LOG'|'INSTRUMENTATION_OUTPUT'|'EXERCISER_MONKEY_OUTPUT'|'CALABASH_JSON_OUTPUT'|'CALABASH_PRETTY_OUTPUT'|'CALABASH_STANDARD_OUTPUT'|'CALABASH_JAVA_XML_OUTPUT'|'AUTOMATION_OUTPUT'|'APPIUM_SERVER_OUTPUT'|'APPIUM_JAVA_OUTPUT'|'APPIUM_JAVA_XML_OUTPUT'|'APPIUM_PYTHON_OUTPUT'|'APPIUM_PYTHON_XML_OUTPUT'|'EXPLORER_EVENT_LOG'|'EXPLORER_SUMMARY_LOG'|'APPLICATION_CRASH_REPORT'|'XCTEST_LOG'|'VIDEO'|'CUSTOMER_ARTIFACT'|'CUSTOMER_ARTIFACT_LOG'|'TESTSPEC_OUTPUT',
            'extension': 'string',
            'url': 'string'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the result of a list artifacts operation.

    • artifacts (list) --

      Information about the artifacts.

      • (dict) --

        Represents the output of a test. Examples of artifacts include logs and screenshots.

        • arn (string) --

          The artifact's ARN.

        • name (string) --

          The artifact's name.

        • type (string) --

          The artifact's type.

          Allowed values include the following:

          • UNKNOWN: An unknown type.
          • SCREENSHOT: The screenshot type.
          • DEVICE_LOG: The device log type.
          • MESSAGE_LOG: The message log type.
          • VIDEO_LOG: The video log type.
          • RESULT_LOG: The result log type.
          • SERVICE_LOG: The service log type.
          • WEBKIT_LOG: The web kit log type.
          • INSTRUMENTATION_OUTPUT: The instrumentation type.
          • EXERCISER_MONKEY_OUTPUT: For Android, the artifact (log) generated by an Android fuzz test.
          • CALABASH_JSON_OUTPUT: The Calabash JSON output type.
          • CALABASH_PRETTY_OUTPUT: The Calabash pretty output type.
          • CALABASH_STANDARD_OUTPUT: The Calabash standard output type.
          • CALABASH_JAVA_XML_OUTPUT: The Calabash Java XML output type.
          • AUTOMATION_OUTPUT: The automation output type.
          • APPIUM_SERVER_OUTPUT: The Appium server output type.
          • APPIUM_JAVA_OUTPUT: The Appium Java output type.
          • APPIUM_JAVA_XML_OUTPUT: The Appium Java XML output type.
          • APPIUM_PYTHON_OUTPUT: The Appium Python output type.
          • APPIUM_PYTHON_XML_OUTPUT: The Appium Python XML output type.
          • EXPLORER_EVENT_LOG: The Explorer event log output type.
          • EXPLORER_SUMMARY_LOG: The Explorer summary log output type.
          • APPLICATION_CRASH_REPORT: The application crash report output type.
          • XCTEST_LOG: The Xcode test output type.
          • VIDEO: The Video output type.
          • CUSTOMER_ARTIFACT:The Customer Artifact output type.
          • CUSTOMER_ARTIFACT_LOG: The Customer Artifact Log output type.
          • TESTSPEC_OUTPUT: The Test Spec Output type.
        • extension (string) --

          The artifact's file extension.

        • url (string) --

          The pre-signed Amazon S3 URL that can be used with a corresponding GET request to download the artifact's file.

    • nextToken (string) --

      If the number of items that are returned is significantly large, this is an identifier that is also returned, which can be used in a subsequent call to this operation to return the next set of items in the list.

Examples

The following example lists screenshot artifacts for a specific run.

response = client.list_artifacts(
    type='SCREENSHOT',
    # Can also be used to list artifacts for a Job, Suite, or Test ARN.
    arn='arn:aws:devicefarm:us-west-2:123456789101:run:EXAMPLE-GUID-123-456',
)

print(response)

Expected Output:

{
    'ResponseMetadata': {
        '...': '...',
    },
}
list_device_instances(**kwargs)

Returns information about the private device instances associated with one or more AWS accounts.

See also: AWS API Documentation

Request Syntax

response = client.list_device_instances(
    maxResults=123,
    nextToken='string'
)
Parameters
  • maxResults (integer) -- An integer specifying the maximum number of items you want to return in the API response.
  • nextToken (string) -- An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
Return type

dict

Returns

Response Syntax

{
    'deviceInstances': [
        {
            'arn': 'string',
            'deviceArn': 'string',
            'labels': [
                'string',
            ],
            'status': 'IN_USE'|'PREPARING'|'AVAILABLE'|'NOT_AVAILABLE',
            'udid': 'string',
            'instanceProfile': {
                'arn': 'string',
                'packageCleanup': True|False,
                'excludeAppPackagesFromCleanup': [
                    'string',
                ],
                'rebootAfterUse': True|False,
                'name': 'string',
                'description': 'string'
            }
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • deviceInstances (list) --

      An object containing information about your device instances.

      • (dict) --

        Represents the device instance.

        • arn (string) --

          The Amazon Resource Name (ARN) of the device instance.

        • deviceArn (string) --

          The Amazon Resource Name (ARN) of the device.

        • labels (list) --

          An array of strings describing the device instance.

          • (string) --
        • status (string) --

          The status of the device instance. Valid values are listed below.

        • udid (string) --

          Unique device identifier for the device instance.

        • instanceProfile (dict) --

          A object containing information about the instance profile.

          • arn (string) --

            The Amazon Resource Name (ARN) of the instance profile.

          • packageCleanup (boolean) --

            When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.

          • excludeAppPackagesFromCleanup (list) --

            An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

            The list of packages is only considered if you set packageCleanup to true .

            • (string) --
          • rebootAfterUse (boolean) --

            When set to true , Device Farm will reboot the instance after a test run. The default value is true .

          • name (string) --

            The name of the instance profile.

          • description (string) --

            The description of the instance profile.

    • nextToken (string) --

      An identifier that can be used in the next call to this operation to return the next set of items in the list.

list_device_pools(**kwargs)

Gets information about device pools.

See also: AWS API Documentation

Request Syntax

response = client.list_device_pools(
    arn='string',
    type='CURATED'|'PRIVATE',
    nextToken='string'
)
Parameters
  • arn (string) --

    [REQUIRED]

    The project ARN.

  • type (string) --

    The device pools' type.

    Allowed values include:

    • CURATED: A device pool that is created and managed by AWS Device Farm.
    • PRIVATE: A device pool that is created and managed by the device pool developer.
  • nextToken (string) -- An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
Return type

dict

Returns

Response Syntax

{
    'devicePools': [
        {
            'arn': 'string',
            'name': 'string',
            'description': 'string',
            'type': 'CURATED'|'PRIVATE',
            'rules': [
                {
                    'attribute': 'ARN'|'PLATFORM'|'FORM_FACTOR'|'MANUFACTURER'|'REMOTE_ACCESS_ENABLED'|'REMOTE_DEBUG_ENABLED'|'APPIUM_VERSION'|'INSTANCE_ARN'|'INSTANCE_LABELS'|'FLEET_TYPE'|'OS_VERSION'|'MODEL'|'AVAILABILITY',
                    'operator': 'EQUALS'|'LESS_THAN'|'LESS_THAN_OR_EQUALS'|'GREATER_THAN'|'GREATER_THAN_OR_EQUALS'|'IN'|'NOT_IN'|'CONTAINS',
                    'value': 'string'
                },
            ],
            'maxDevices': 123
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the result of a list device pools request.

    • devicePools (list) --

      Information about the device pools.

      • (dict) --

        Represents a collection of device types.

        • arn (string) --

          The device pool's ARN.

        • name (string) --

          The device pool's name.

        • description (string) --

          The device pool's description.

        • type (string) --

          The device pool's type.

          Allowed values include:

          • CURATED: A device pool that is created and managed by AWS Device Farm.
          • PRIVATE: A device pool that is created and managed by the device pool developer.
        • rules (list) --

          Information about the device pool's rules.

          • (dict) --

            Represents a condition for a device pool.

            • attribute (string) --

              The rule's stringified attribute. For example, specify the value as "\"abc\"" .

              The supported operators for each attribute are provided in the following list.

              APPIUM_VERSION

              The Appium version for the test.

              Supported operators : CONTAINS

              ARN

              The Amazon Resource Name (ARN) of the device. For example, "arn:aws:devicefarm:us-west-2::device:12345Example".

              Supported operators : EQUALS , IN , NOT_IN

              AVAILABILITY

              The current availability of the device. Valid values are "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".

              Supported operators : EQUALS

              FLEET_TYPE

              The fleet type. Valid values are "PUBLIC" or "PRIVATE".

              Supported operators : EQUALS

              FORM_FACTOR

              The device form factor. Valid values are "PHONE" or "TABLET".

              Supported operators : EQUALS , IN , NOT_IN

              INSTANCE_ARN

              The Amazon Resource Name (ARN) of the device instance.

              Supported operators : IN , NOT_IN

              INSTANCE_LABELS

              The label of the device instance.

              Supported operators : CONTAINS

              MANUFACTURER

              The device manufacturer. For example, "Apple".

              Supported operators : EQUALS , IN , NOT_IN

              MODEL

              The device model, such as "Apple iPad Air 2" or "Google Pixel".

              Supported operators : CONTAINS , EQUALS , IN , NOT_IN

              OS_VERSION

              The operating system version. For example, "10.3.2".

              Supported operators : EQUALS , GREATER_THAN , GREATER_THAN_OR_EQUALS , IN , LESS_THAN , LESS_THAN_OR_EQUALS , NOT_IN

              PLATFORM

              The device platform. Valid values are "ANDROID" or "IOS".

              Supported operators : EQUALS , IN , NOT_IN

              REMOTE_ACCESS_ENABLED

              Whether the device is enabled for remote access. Valid values are "TRUE" or "FALSE".

              Supported operators : EQUALS

              REMOTE_DEBUG_ENABLED

              Whether the device is enabled for remote debugging. Valid values are "TRUE" or "FALSE".

              Supported operators : EQUALS

              This filter will be ignored, as remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

            • operator (string) --

              Specifies how Device Farm compares the rule's attribute to the value. For the operators that are supported by each attribute, see the attribute descriptions.

            • value (string) --

              The rule's value.

        • maxDevices (integer) --

          The number of devices that Device Farm can add to your device pool. Device Farm adds devices that are available and that meet the criteria that you assign for the rules parameter. Depending on how many devices meet these constraints, your device pool might contain fewer devices than the value for this parameter.

          By specifying the maximum number of devices, you can control the costs that you incur by running tests.

    • nextToken (string) --

      If the number of items that are returned is significantly large, this is an identifier that is also returned, which can be used in a subsequent call to this operation to return the next set of items in the list.

Examples

The following example returns information about the private device pools in a specific project.

response = client.list_device_pools(
    type='PRIVATE',
    # You can get the project ARN by using the list-projects CLI command.
    arn='arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456',
)

print(response)

Expected Output:

{
    'devicePools': [
        {
            'name': 'Top Devices',
            'arn': 'arn:aws:devicefarm:us-west-2::devicepool:082d10e5-d7d7-48a5-ba5c-12345EXAMPLE',
            'description': 'Top devices',
            'rules': [
                {
                    'value': '["arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE","arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE","arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE","arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE","arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE","arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE","arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE","arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE","arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE","arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE"]',
                    'attribute': 'ARN',
                    'operator': 'IN',
                },
            ],
        },
        {
            'name': 'My Android Device Pool',
            'arn': 'arn:aws:devicefarm:us-west-2:123456789101:devicepool:5e01a8c7-c861-4c0a-b1d5-5ec6e6c6dd23/bf96e75a-28f6-4e61-b6a7-12345EXAMPLE',
            'description': 'Samsung Galaxy Android devices',
            'rules': [
                {
                    'value': '["arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE","arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE","arn:aws:devicefarm:us-west-2::device:123456789EXAMPLE"]',
                    'attribute': 'ARN',
                    'operator': 'IN',
                },
            ],
        },
    ],
    'ResponseMetadata': {
        '...': '...',
    },
}
list_devices(**kwargs)

Gets information about unique device types.

See also: AWS API Documentation

Request Syntax

response = client.list_devices(
    arn='string',
    nextToken='string',
    filters=[
        {
            'attribute': 'ARN'|'PLATFORM'|'OS_VERSION'|'MODEL'|'AVAILABILITY'|'FORM_FACTOR'|'MANUFACTURER'|'REMOTE_ACCESS_ENABLED'|'REMOTE_DEBUG_ENABLED'|'INSTANCE_ARN'|'INSTANCE_LABELS'|'FLEET_TYPE',
            'operator': 'EQUALS'|'LESS_THAN'|'LESS_THAN_OR_EQUALS'|'GREATER_THAN'|'GREATER_THAN_OR_EQUALS'|'IN'|'NOT_IN'|'CONTAINS',
            'values': [
                'string',
            ]
        },
    ]
)
Parameters
  • arn (string) -- The Amazon Resource Name (ARN) of the project.
  • nextToken (string) -- An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
  • filters (list) --

    Used to select a set of devices. A filter is made up of an attribute, an operator, and one or more values.

    • Attribute: The aspect of a device such as platform or model used as the selection criteria in a device filter. Allowed values include:
      • ARN: The Amazon Resource Name (ARN) of the device. For example, "arn:aws:devicefarm:us-west-2::device:12345Example".
      • PLATFORM: The device platform. Valid values are "ANDROID" or "IOS".
      • OS_VERSION: The operating system version. For example, "10.3.2".
      • MODEL: The device model. For example, "iPad 5th Gen".
      • AVAILABILITY: The current availability of the device. Valid values are "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".
      • FORM_FACTOR: The device form factor. Valid values are "PHONE" or "TABLET".
      • MANUFACTURER: The device manufacturer. For example, "Apple".
      • REMOTE_ACCESS_ENABLED: Whether the device is enabled for remote access. Valid values are "TRUE" or "FALSE".
      • REMOTE_DEBUG_ENABLED: Whether the device is enabled for remote debugging. Valid values are "TRUE" or "FALSE". This attribute will be ignored, as remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .
      • INSTANCE_ARN: The Amazon Resource Name (ARN) of the device instance.
      • INSTANCE_LABELS: The label of the device instance.
      • FLEET_TYPE: The fleet type. Valid values are "PUBLIC" or "PRIVATE".
    • Operator: The filter operator.
      • The EQUALS operator is available for every attribute except INSTANCE_LABELS.
      • The CONTAINS operator is available for the INSTANCE_LABELS and MODEL attributes.
      • The IN and NOT_IN operators are available for the ARN, OS_VERSION, MODEL, MANUFACTURER, and INSTANCE_ARN attributes.
      • The LESS_THAN, GREATER_THAN, LESS_THAN_OR_EQUALS, and GREATER_THAN_OR_EQUALS operators are also available for the OS_VERSION attribute.
    • Values: An array of one or more filter values.
      • The IN and NOT_IN operators take a values array that has one or more elements.
      • The other operators require an array with a single element.
      • In a request, the AVAILABILITY attribute takes "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE" as values.
    • (dict) --

      Represents a device filter used to select a set of devices to be included in a test run. This data structure is passed in as the deviceSelectionConfiguration parameter to ScheduleRun. For an example of the JSON request syntax, see ScheduleRun .

      It is also passed in as the filters parameter to ListDevices. For an example of the JSON request syntax, see ListDevices .

      • attribute (string) --

        The aspect of a device such as platform or model used as the selection criteria in a device filter.

        The supported operators for each attribute are provided in the following list.

        ARN

        The Amazon Resource Name (ARN) of the device. For example, "arn:aws:devicefarm:us-west-2::device:12345Example".

        Supported operators : EQUALS , IN , NOT_IN
        PLATFORM

        The device platform. Valid values are "ANDROID" or "IOS".

        Supported operators : EQUALS
        OS_VERSION

        The operating system version. For example, "10.3.2".

        Supported operators : EQUALS , GREATER_THAN , GREATER_THAN_OR_EQUALS , IN , LESS_THAN , LESS_THAN_OR_EQUALS , NOT_IN
        MODEL

        The device model. For example, "iPad 5th Gen".

        Supported operators : CONTAINS , EQUALS , IN , NOT_IN
        AVAILABILITY

        The current availability of the device. Valid values are "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".

        Supported operators : EQUALS
        FORM_FACTOR

        The device form factor. Valid values are "PHONE" or "TABLET".

        Supported operators : EQUALS
        MANUFACTURER

        The device manufacturer. For example, "Apple".

        Supported operators : EQUALS , IN , NOT_IN
        REMOTE_ACCESS_ENABLED

        Whether the device is enabled for remote access. Valid values are "TRUE" or "FALSE".

        Supported operators : EQUALS
        REMOTE_DEBUG_ENABLED

        Ignored. Whether the device is enabled for remote debugging. Valid values are "TRUE" or "FALSE".

        Supported operators : EQUALS

        This filter will be ignored, as remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

        INSTANCE_ARN

        The Amazon Resource Name (ARN) of the device instance.

        Supported operators : EQUALS , IN , NOT_IN
        INSTANCE_LABELS

        The label of the device instance.

        Supported operators : CONTAINS
        FLEET_TYPE

        The fleet type. Valid values are "PUBLIC" or "PRIVATE".

        Supported operators : EQUALS
      • operator (string) --

        Specifies how Device Farm compares the filter's attribute to the value. For the operators that are supported by each attribute, see the attribute descriptions.

      • values (list) --

        An array of one or more filter values used in a device filter.

        Operator Values
        • The IN and NOT_IN operators can take a values array that has more than one element.
        • The other operators require an array with a single element.
        Attribute Values
        • The PLATFORM attribute can be set to "ANDROID" or "IOS".
        • The AVAILABILITY attribute can be set to "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".
        • The FORM_FACTOR attribute can be set to "PHONE" or "TABLET".
        • The FLEET_TYPE attribute can be set to "PUBLIC" or "PRIVATE".
        • (string) --
Return type

dict

Returns

Response Syntax

{
    'devices': [
        {
            'arn': 'string',
            'name': 'string',
            'manufacturer': 'string',
            'model': 'string',
            'modelId': 'string',
            'formFactor': 'PHONE'|'TABLET',
            'platform': 'ANDROID'|'IOS',
            'os': 'string',
            'cpu': {
                'frequency': 'string',
                'architecture': 'string',
                'clock': 123.0
            },
            'resolution': {
                'width': 123,
                'height': 123
            },
            'heapSize': 123,
            'memory': 123,
            'image': 'string',
            'carrier': 'string',
            'radio': 'string',
            'remoteAccessEnabled': True|False,
            'remoteDebugEnabled': True|False,
            'fleetType': 'string',
            'fleetName': 'string',
            'instances': [
                {
                    'arn': 'string',
                    'deviceArn': 'string',
                    'labels': [
                        'string',
                    ],
                    'status': 'IN_USE'|'PREPARING'|'AVAILABLE'|'NOT_AVAILABLE',
                    'udid': 'string',
                    'instanceProfile': {
                        'arn': 'string',
                        'packageCleanup': True|False,
                        'excludeAppPackagesFromCleanup': [
                            'string',
                        ],
                        'rebootAfterUse': True|False,
                        'name': 'string',
                        'description': 'string'
                    }
                },
            ],
            'availability': 'TEMPORARY_NOT_AVAILABLE'|'BUSY'|'AVAILABLE'|'HIGHLY_AVAILABLE'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the result of a list devices operation.

    • devices (list) --

      Information about the devices.

      • (dict) --

        Represents a device type that an app is tested against.

        • arn (string) --

          The device's ARN.

        • name (string) --

          The device's display name.

        • manufacturer (string) --

          The device's manufacturer name.

        • model (string) --

          The device's model name.

        • modelId (string) --

          The device's model ID.

        • formFactor (string) --

          The device's form factor.

          Allowed values include:

          • PHONE: The phone form factor.
          • TABLET: The tablet form factor.
        • platform (string) --

          The device's platform.

          Allowed values include:

          • ANDROID: The Android platform.
          • IOS: The iOS platform.
        • os (string) --

          The device's operating system type.

        • cpu (dict) --

          Information about the device's CPU.

          • frequency (string) --

            The CPU's frequency.

          • architecture (string) --

            The CPU's architecture, for example x86 or ARM.

          • clock (float) --

            The clock speed of the device's CPU, expressed in hertz (Hz). For example, a 1.2 GHz CPU is expressed as 1200000000.

        • resolution (dict) --

          The resolution of the device.

          • width (integer) --

            The screen resolution's width, expressed in pixels.

          • height (integer) --

            The screen resolution's height, expressed in pixels.

        • heapSize (integer) --

          The device's heap size, expressed in bytes.

        • memory (integer) --

          The device's total memory size, expressed in bytes.

        • image (string) --

          The device's image name.

        • carrier (string) --

          The device's carrier.

        • radio (string) --

          The device's radio.

        • remoteAccessEnabled (boolean) --

          Specifies whether remote access has been enabled for the specified device.

        • remoteDebugEnabled (boolean) --

          This flag is set to true if remote debugging is enabled for the device.

          Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

        • fleetType (string) --

          The type of fleet to which this device belongs. Possible values for fleet type are PRIVATE and PUBLIC.

        • fleetName (string) --

          The name of the fleet to which this device belongs.

        • instances (list) --

          The instances belonging to this device.

          • (dict) --

            Represents the device instance.

            • arn (string) --

              The Amazon Resource Name (ARN) of the device instance.

            • deviceArn (string) --

              The Amazon Resource Name (ARN) of the device.

            • labels (list) --

              An array of strings describing the device instance.

              • (string) --
            • status (string) --

              The status of the device instance. Valid values are listed below.

            • udid (string) --

              Unique device identifier for the device instance.

            • instanceProfile (dict) --

              A object containing information about the instance profile.

              • arn (string) --

                The Amazon Resource Name (ARN) of the instance profile.

              • packageCleanup (boolean) --

                When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.

              • excludeAppPackagesFromCleanup (list) --

                An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

                The list of packages is only considered if you set packageCleanup to true .

                • (string) --
              • rebootAfterUse (boolean) --

                When set to true , Device Farm will reboot the instance after a test run. The default value is true .

              • name (string) --

                The name of the instance profile.

              • description (string) --

                The description of the instance profile.

        • availability (string) --

          Reflects how likely a device will be available for a test run. It is currently available in the ListDevices and GetDevice API methods.

    • nextToken (string) --

      If the number of items that are returned is significantly large, this is an identifier that is also returned, which can be used in a subsequent call to this operation to return the next set of items in the list.

Examples

The following example returns information about the available devices in a specific project.

response = client.list_devices(
    # You can get the project ARN by using the list-projects CLI command.
    arn='arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456',
)

print(response)

Expected Output:

{
    'ResponseMetadata': {
        '...': '...',
    },
}
list_instance_profiles(**kwargs)

Returns information about all the instance profiles in an AWS account.

See also: AWS API Documentation

Request Syntax

response = client.list_instance_profiles(
    maxResults=123,
    nextToken='string'
)
Parameters
  • maxResults (integer) -- An integer specifying the maximum number of items you want to return in the API response.
  • nextToken (string) -- An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
Return type

dict

Returns

Response Syntax

{
    'instanceProfiles': [
        {
            'arn': 'string',
            'packageCleanup': True|False,
            'excludeAppPackagesFromCleanup': [
                'string',
            ],
            'rebootAfterUse': True|False,
            'name': 'string',
            'description': 'string'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • instanceProfiles (list) --

      An object containing information about your instance profiles.

      • (dict) --

        Represents the instance profile.

        • arn (string) --

          The Amazon Resource Name (ARN) of the instance profile.

        • packageCleanup (boolean) --

          When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.

        • excludeAppPackagesFromCleanup (list) --

          An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

          The list of packages is only considered if you set packageCleanup to true .

          • (string) --
        • rebootAfterUse (boolean) --

          When set to true , Device Farm will reboot the instance after a test run. The default value is true .

        • name (string) --

          The name of the instance profile.

        • description (string) --

          The description of the instance profile.

    • nextToken (string) --

      An identifier that can be used in the next call to this operation to return the next set of items in the list.

list_jobs(**kwargs)

Gets information about jobs for a given test run.

See also: AWS API Documentation

Request Syntax

response = client.list_jobs(
    arn='string',
    nextToken='string'
)
Parameters
  • arn (string) --

    [REQUIRED]

    The run's Amazon Resource Name (ARN).

  • nextToken (string) -- An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
Return type

dict

Returns

Response Syntax

{
    'jobs': [
        {
            'arn': 'string',
            'name': 'string',
            'type': 'BUILTIN_FUZZ'|'BUILTIN_EXPLORER'|'WEB_PERFORMANCE_PROFILE'|'APPIUM_JAVA_JUNIT'|'APPIUM_JAVA_TESTNG'|'APPIUM_PYTHON'|'APPIUM_NODE'|'APPIUM_RUBY'|'APPIUM_WEB_JAVA_JUNIT'|'APPIUM_WEB_JAVA_TESTNG'|'APPIUM_WEB_PYTHON'|'APPIUM_WEB_NODE'|'APPIUM_WEB_RUBY'|'CALABASH'|'INSTRUMENTATION'|'UIAUTOMATION'|'UIAUTOMATOR'|'XCTEST'|'XCTEST_UI'|'REMOTE_ACCESS_RECORD'|'REMOTE_ACCESS_REPLAY',
            'created': datetime(2015, 1, 1),
            'status': 'PENDING'|'PENDING_CONCURRENCY'|'PENDING_DEVICE'|'PROCESSING'|'SCHEDULING'|'PREPARING'|'RUNNING'|'COMPLETED'|'STOPPING',
            'result': 'PENDING'|'PASSED'|'WARNED'|'FAILED'|'SKIPPED'|'ERRORED'|'STOPPED',
            'started': datetime(2015, 1, 1),
            'stopped': datetime(2015, 1, 1),
            'counters': {
                'total': 123,
                'passed': 123,
                'failed': 123,
                'warned': 123,
                'errored': 123,
                'stopped': 123,
                'skipped': 123
            },
            'message': 'string',
            'device': {
                'arn': 'string',
                'name': 'string',
                'manufacturer': 'string',
                'model': 'string',
                'modelId': 'string',
                'formFactor': 'PHONE'|'TABLET',
                'platform': 'ANDROID'|'IOS',
                'os': 'string',
                'cpu': {
                    'frequency': 'string',
                    'architecture': 'string',
                    'clock': 123.0
                },
                'resolution': {
                    'width': 123,
                    'height': 123
                },
                'heapSize': 123,
                'memory': 123,
                'image': 'string',
                'carrier': 'string',
                'radio': 'string',
                'remoteAccessEnabled': True|False,
                'remoteDebugEnabled': True|False,
                'fleetType': 'string',
                'fleetName': 'string',
                'instances': [
                    {
                        'arn': 'string',
                        'deviceArn': 'string',
                        'labels': [
                            'string',
                        ],
                        'status': 'IN_USE'|'PREPARING'|'AVAILABLE'|'NOT_AVAILABLE',
                        'udid': 'string',
                        'instanceProfile': {
                            'arn': 'string',
                            'packageCleanup': True|False,
                            'excludeAppPackagesFromCleanup': [
                                'string',
                            ],
                            'rebootAfterUse': True|False,
                            'name': 'string',
                            'description': 'string'
                        }
                    },
                ],
                'availability': 'TEMPORARY_NOT_AVAILABLE'|'BUSY'|'AVAILABLE'|'HIGHLY_AVAILABLE'
            },
            'instanceArn': 'string',
            'deviceMinutes': {
                'total': 123.0,
                'metered': 123.0,
                'unmetered': 123.0
            },
            'videoEndpoint': 'string',
            'videoCapture': True|False
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the result of a list jobs request.

    • jobs (list) --

      Information about the jobs.

      • (dict) --

        Represents a device.

        • arn (string) --

          The job's ARN.

        • name (string) --

          The job's name.

        • type (string) --

          The job's type.

          Allowed values include the following:

          • BUILTIN_FUZZ: The built-in fuzz type.
          • BUILTIN_EXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.
          • APPIUM_JAVA_JUNIT: The Appium Java JUnit type.
          • APPIUM_JAVA_TESTNG: The Appium Java TestNG type.
          • APPIUM_PYTHON: The Appium Python type.
          • APPIUM_NODE: The Appium Node.js type.
          • APPIUM_RUBY: The Appium Ruby type.
          • APPIUM_WEB_JAVA_JUNIT: The Appium Java JUnit type for web apps.
          • APPIUM_WEB_JAVA_TESTNG: The Appium Java TestNG type for web apps.
          • APPIUM_WEB_PYTHON: The Appium Python type for web apps.
          • APPIUM_WEB_NODE: The Appium Node.js type for web apps.
          • APPIUM_WEB_RUBY: The Appium Ruby test type for web apps.
          • CALABASH: The Calabash type.
          • INSTRUMENTATION: The Instrumentation type.
          • UIAUTOMATION: The uiautomation type.
          • UIAUTOMATOR: The uiautomator type.
          • XCTEST: The Xcode test type.
          • XCTEST_UI: The Xcode UI test type.
        • created (datetime) --

          When the job was created.

        • status (string) --

          The job's status.

          Allowed values include:

          • PENDING: A pending status.
          • PENDING_CONCURRENCY: A pending concurrency status.
          • PENDING_DEVICE: A pending device status.
          • PROCESSING: A processing status.
          • SCHEDULING: A scheduling status.
          • PREPARING: A preparing status.
          • RUNNING: A running status.
          • COMPLETED: A completed status.
          • STOPPING: A stopping status.
        • result (string) --

          The job's result.

          Allowed values include:

          • PENDING: A pending condition.
          • PASSED: A passing condition.
          • WARNED: A warning condition.
          • FAILED: A failed condition.
          • SKIPPED: A skipped condition.
          • ERRORED: An error condition.
          • STOPPED: A stopped condition.
        • started (datetime) --

          The job's start time.

        • stopped (datetime) --

          The job's stop time.

        • counters (dict) --

          The job's result counters.

          • total (integer) --

            The total number of entities.

          • passed (integer) --

            The number of passed entities.

          • failed (integer) --

            The number of failed entities.

          • warned (integer) --

            The number of warned entities.

          • errored (integer) --

            The number of errored entities.

          • stopped (integer) --

            The number of stopped entities.

          • skipped (integer) --

            The number of skipped entities.

        • message (string) --

          A message about the job's result.

        • device (dict) --

          The device (phone or tablet).

          • arn (string) --

            The device's ARN.

          • name (string) --

            The device's display name.

          • manufacturer (string) --

            The device's manufacturer name.

          • model (string) --

            The device's model name.

          • modelId (string) --

            The device's model ID.

          • formFactor (string) --

            The device's form factor.

            Allowed values include:

            • PHONE: The phone form factor.
            • TABLET: The tablet form factor.
          • platform (string) --

            The device's platform.

            Allowed values include:

            • ANDROID: The Android platform.
            • IOS: The iOS platform.
          • os (string) --

            The device's operating system type.

          • cpu (dict) --

            Information about the device's CPU.

            • frequency (string) --

              The CPU's frequency.

            • architecture (string) --

              The CPU's architecture, for example x86 or ARM.

            • clock (float) --

              The clock speed of the device's CPU, expressed in hertz (Hz). For example, a 1.2 GHz CPU is expressed as 1200000000.

          • resolution (dict) --

            The resolution of the device.

            • width (integer) --

              The screen resolution's width, expressed in pixels.

            • height (integer) --

              The screen resolution's height, expressed in pixels.

          • heapSize (integer) --

            The device's heap size, expressed in bytes.

          • memory (integer) --

            The device's total memory size, expressed in bytes.

          • image (string) --

            The device's image name.

          • carrier (string) --

            The device's carrier.

          • radio (string) --

            The device's radio.

          • remoteAccessEnabled (boolean) --

            Specifies whether remote access has been enabled for the specified device.

          • remoteDebugEnabled (boolean) --

            This flag is set to true if remote debugging is enabled for the device.

            Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

          • fleetType (string) --

            The type of fleet to which this device belongs. Possible values for fleet type are PRIVATE and PUBLIC.

          • fleetName (string) --

            The name of the fleet to which this device belongs.

          • instances (list) --

            The instances belonging to this device.

            • (dict) --

              Represents the device instance.

              • arn (string) --

                The Amazon Resource Name (ARN) of the device instance.

              • deviceArn (string) --

                The Amazon Resource Name (ARN) of the device.

              • labels (list) --

                An array of strings describing the device instance.

                • (string) --
              • status (string) --

                The status of the device instance. Valid values are listed below.

              • udid (string) --

                Unique device identifier for the device instance.

              • instanceProfile (dict) --

                A object containing information about the instance profile.

                • arn (string) --

                  The Amazon Resource Name (ARN) of the instance profile.

                • packageCleanup (boolean) --

                  When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.

                • excludeAppPackagesFromCleanup (list) --

                  An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

                  The list of packages is only considered if you set packageCleanup to true .

                  • (string) --
                • rebootAfterUse (boolean) --

                  When set to true , Device Farm will reboot the instance after a test run. The default value is true .

                • name (string) --

                  The name of the instance profile.

                • description (string) --

                  The description of the instance profile.

          • availability (string) --

            Reflects how likely a device will be available for a test run. It is currently available in the ListDevices and GetDevice API methods.

        • instanceArn (string) --

          The Amazon Resource Name (ARN) of the instance.

        • deviceMinutes (dict) --

          Represents the total (metered or unmetered) minutes used by the job.

          • total (float) --

            When specified, represents the total minutes used by the resource to run tests.

          • metered (float) --

            When specified, represents only the sum of metered minutes used by the resource to run tests.

          • unmetered (float) --

            When specified, represents only the sum of unmetered minutes used by the resource to run tests.

        • videoEndpoint (string) --

          The endpoint for streaming device video.

        • videoCapture (boolean) --

          This value is set to true if video capture is enabled; otherwise, it is set to false.

    • nextToken (string) --

      If the number of items that are returned is significantly large, this is an identifier that is also returned, which can be used in a subsequent call to this operation to return the next set of items in the list.

Examples

The following example returns information about jobs in a specific project.

response = client.list_jobs(
    # You can get the project ARN by using the list-jobs CLI command.
    arn='arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456',
)

print(response)

Expected Output:

{
    'ResponseMetadata': {
        '...': '...',
    },
}
list_network_profiles(**kwargs)

Returns the list of available network profiles.

See also: AWS API Documentation

Request Syntax

response = client.list_network_profiles(
    arn='string',
    type='CURATED'|'PRIVATE',
    nextToken='string'
)
Parameters
  • arn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the project for which you want to list network profiles.

  • type (string) -- The type of network profile you wish to return information about. Valid values are listed below.
  • nextToken (string) -- An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
Return type

dict

Returns

Response Syntax

{
    'networkProfiles': [
        {
            'arn': 'string',
            'name': 'string',
            'description': 'string',
            'type': 'CURATED'|'PRIVATE',
            'uplinkBandwidthBits': 123,
            'downlinkBandwidthBits': 123,
            'uplinkDelayMs': 123,
            'downlinkDelayMs': 123,
            'uplinkJitterMs': 123,
            'downlinkJitterMs': 123,
            'uplinkLossPercent': 123,
            'downlinkLossPercent': 123
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • networkProfiles (list) --

      A list of the available network profiles.

      • (dict) --

        An array of settings that describes characteristics of a network profile.

        • arn (string) --

          The Amazon Resource Name (ARN) of the network profile.

        • name (string) --

          The name of the network profile.

        • description (string) --

          The description of the network profile.

        • type (string) --

          The type of network profile. Valid values are listed below.

        • uplinkBandwidthBits (integer) --

          The data throughput rate in bits per second, as an integer from 0 to 104857600.

        • downlinkBandwidthBits (integer) --

          The data throughput rate in bits per second, as an integer from 0 to 104857600.

        • uplinkDelayMs (integer) --

          Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.

        • downlinkDelayMs (integer) --

          Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.

        • uplinkJitterMs (integer) --

          Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.

        • downlinkJitterMs (integer) --

          Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.

        • uplinkLossPercent (integer) --

          Proportion of transmitted packets that fail to arrive from 0 to 100 percent.

        • downlinkLossPercent (integer) --

          Proportion of received packets that fail to arrive from 0 to 100 percent.

    • nextToken (string) --

      An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.

list_offering_promotions(**kwargs)

Returns a list of offering promotions. Each offering promotion record contains the ID and description of the promotion. The API returns a NotEligible error if the caller is not permitted to invoke the operation. Contact aws-devicefarm-support@amazon.com if you believe that you should be able to invoke this operation.

See also: AWS API Documentation

Request Syntax

response = client.list_offering_promotions(
    nextToken='string'
)
Parameters
nextToken (string) -- An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
Return type
dict
Returns
Response Syntax
{
    'offeringPromotions': [
        {
            'id': 'string',
            'description': 'string'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --
    • offeringPromotions (list) --

      Information about the offering promotions.

      • (dict) --

        Represents information about an offering promotion.

        • id (string) --

          The ID of the offering promotion.

        • description (string) --

          A string describing the offering promotion.

    • nextToken (string) --

      An identifier to be used in the next call to this operation, to return the next set of items in the list.

list_offering_transactions(**kwargs)

Returns a list of all historical purchases, renewals, and system renewal transactions for an AWS account. The list is paginated and ordered by a descending timestamp (most recent transactions are first). The API returns a NotEligible error if the user is not permitted to invoke the operation. Please contact aws-devicefarm-support@amazon.com if you believe that you should be able to invoke this operation.

See also: AWS API Documentation

Request Syntax

response = client.list_offering_transactions(
    nextToken='string'
)
Parameters
nextToken (string) -- An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
Return type
dict
Returns
Response Syntax
{
    'offeringTransactions': [
        {
            'offeringStatus': {
                'type': 'PURCHASE'|'RENEW'|'SYSTEM',
                'offering': {
                    'id': 'string',
                    'description': 'string',
                    'type': 'RECURRING',
                    'platform': 'ANDROID'|'IOS',
                    'recurringCharges': [
                        {
                            'cost': {
                                'amount': 123.0,
                                'currencyCode': 'USD'
                            },
                            'frequency': 'MONTHLY'
                        },
                    ]
                },
                'quantity': 123,
                'effectiveOn': datetime(2015, 1, 1)
            },
            'transactionId': 'string',
            'offeringPromotionId': 'string',
            'createdOn': datetime(2015, 1, 1),
            'cost': {
                'amount': 123.0,
                'currencyCode': 'USD'
            }
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    Returns the transaction log of the specified offerings.

    • offeringTransactions (list) --

      The audit log of subscriptions you have purchased and modified through AWS Device Farm.

      • (dict) --

        Represents the metadata of an offering transaction.

        • offeringStatus (dict) --

          The status of an offering transaction.

          • type (string) --

            The type specified for the offering status.

          • offering (dict) --

            Represents the metadata of an offering status.

            • id (string) --

              The ID that corresponds to a device offering.

            • description (string) --

              A string describing the offering.

            • type (string) --

              The type of offering (e.g., "RECURRING") for a device.

            • platform (string) --

              The platform of the device (e.g., ANDROID or IOS).

            • recurringCharges (list) --

              Specifies whether there are recurring charges for the offering.

              • (dict) --

                Specifies whether charges for devices will be recurring.

                • cost (dict) --

                  The cost of the recurring charge.

                  • amount (float) --

                    The numerical amount of an offering or transaction.

                  • currencyCode (string) --

                    The currency code of a monetary amount. For example, USD means "U.S. dollars."

                • frequency (string) --

                  The frequency in which charges will recur.

          • quantity (integer) --

            The number of available devices in the offering.

          • effectiveOn (datetime) --

            The date on which the offering is effective.

        • transactionId (string) --

          The transaction ID of the offering transaction.

        • offeringPromotionId (string) --

          The ID that corresponds to a device offering promotion.

        • createdOn (datetime) --

          The date on which an offering transaction was created.

        • cost (dict) --

          The cost of an offering transaction.

          • amount (float) --

            The numerical amount of an offering or transaction.

          • currencyCode (string) --

            The currency code of a monetary amount. For example, USD means "U.S. dollars."

    • nextToken (string) --

      An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.

Examples

The following example returns information about Device Farm offering transactions.

response = client.list_offering_transactions(
    # A dynamically generated value, used for paginating results.
    nextToken='RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE=',
)

print(response)

Expected Output:

{
    'offeringTransactions': [
        {
            'cost': {
                'amount': 0,
                'currencyCode': 'USD',
            },
            'createdOn': datetime(2016, 8, 1, 3, 17, 0, 0, 214, 0),
            'offeringStatus': {
                'type': 'RENEW',
                'effectiveOn': datetime(2016, 9, 1, 0, 0, 0, 3, 245, 0),
                'offering': {
                    'type': 'RECURRING',
                    'description': 'Android Remote Access Unmetered Device Slot',
                    'id': 'D68B3C05-1BA6-4360-BC69-12345EXAMPLE',
                    'platform': 'ANDROID',
                },
                'quantity': 0,
            },
            'transactionId': '03728003-d1ea-4851-abd6-12345EXAMPLE',
        },
        {
            'cost': {
                'amount': 250,
                'currencyCode': 'USD',
            },
            'createdOn': datetime(2016, 8, 1, 3, 17, 0, 0, 214, 0),
            'offeringStatus': {
                'type': 'PURCHASE',
                'effectiveOn': datetime(2016, 8, 1, 3, 17, 0, 0, 214, 0),
                'offering': {
                    'type': 'RECURRING',
                    'description': 'Android Remote Access Unmetered Device Slot',
                    'id': 'D68B3C05-1BA6-4360-BC69-12345EXAMPLE',
                    'platform': 'ANDROID',
                },
                'quantity': 1,
            },
            'transactionId': '56820b6e-06bd-473a-8ff8-12345EXAMPLE',
        },
        {
            'cost': {
                'amount': 175,
                'currencyCode': 'USD',
            },
            'createdOn': datetime(2016, 6, 10, 6, 2, 0, 4, 162, 0),
            'offeringStatus': {
                'type': 'PURCHASE',
                'effectiveOn': datetime(2016, 6, 10, 6, 2, 0, 4, 162, 0),
                'offering': {
                    'type': 'RECURRING',
                    'description': 'Android Unmetered Device Slot',
                    'id': '8980F81C-00D7-469D-8EC6-12345EXAMPLE',
                    'platform': 'ANDROID',
                },
                'quantity': 1,
            },
            'transactionId': '953ae2c6-d760-4a04-9597-12345EXAMPLE',
        },
        {
            'cost': {
                'amount': 8.07,
                'currencyCode': 'USD',
            },
            'createdOn': datetime(2016, 3, 30, 13, 25, 0, 2, 90, 0),
            'offeringStatus': {
                'type': 'PURCHASE',
                'effectiveOn': datetime(2016, 3, 30, 13, 25, 0, 2, 90, 0),
                'offering': {
                    'type': 'RECURRING',
                    'description': 'iOS Unmetered Device Slot',
                    'id': 'A53D4D73-A6F6-4B82-A0B0-12345EXAMPLE',
                    'platform': 'IOS',
                },
                'quantity': 1,
            },
            'transactionId': '2baf9021-ae3e-47f5-ab52-12345EXAMPLE',
        },
    ],
    'ResponseMetadata': {
        '...': '...',
    },
}
list_offerings(**kwargs)

Returns a list of products or offerings that the user can manage through the API. Each offering record indicates the recurring price per unit and the frequency for that offering. The API returns a NotEligible error if the user is not permitted to invoke the operation. Please contact aws-devicefarm-support@amazon.com if you believe that you should be able to invoke this operation.

See also: AWS API Documentation

Request Syntax

response = client.list_offerings(
    nextToken='string'
)
Parameters
nextToken (string) -- An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
Return type
dict
Returns
Response Syntax
{
    'offerings': [
        {
            'id': 'string',
            'description': 'string',
            'type': 'RECURRING',
            'platform': 'ANDROID'|'IOS',
            'recurringCharges': [
                {
                    'cost': {
                        'amount': 123.0,
                        'currencyCode': 'USD'
                    },
                    'frequency': 'MONTHLY'
                },
            ]
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the return values of the list of offerings.

    • offerings (list) --

      A value representing the list offering results.

      • (dict) --

        Represents the metadata of a device offering.

        • id (string) --

          The ID that corresponds to a device offering.

        • description (string) --

          A string describing the offering.

        • type (string) --

          The type of offering (e.g., "RECURRING") for a device.

        • platform (string) --

          The platform of the device (e.g., ANDROID or IOS).

        • recurringCharges (list) --

          Specifies whether there are recurring charges for the offering.

          • (dict) --

            Specifies whether charges for devices will be recurring.

            • cost (dict) --

              The cost of the recurring charge.

              • amount (float) --

                The numerical amount of an offering or transaction.

              • currencyCode (string) --

                The currency code of a monetary amount. For example, USD means "U.S. dollars."

            • frequency (string) --

              The frequency in which charges will recur.

    • nextToken (string) --

      An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.

Examples

The following example returns information about available device offerings.

response = client.list_offerings(
    # A dynamically generated value, used for paginating results.
    nextToken='RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE=',
)

print(response)

Expected Output:

{
    'offerings': [
        {
            'type': 'RECURRING',
            'description': 'iOS Unmetered Device Slot',
            'id': 'A53D4D73-A6F6-4B82-A0B0-12345EXAMPLE',
            'platform': 'IOS',
            'recurringCharges': [
                {
                    'cost': {
                        'amount': 250,
                        'currencyCode': 'USD',
                    },
                    'frequency': 'MONTHLY',
                },
            ],
        },
        {
            'type': 'RECURRING',
            'description': 'Android Unmetered Device Slot',
            'id': '8980F81C-00D7-469D-8EC6-12345EXAMPLE',
            'platform': 'ANDROID',
            'recurringCharges': [
                {
                    'cost': {
                        'amount': 250,
                        'currencyCode': 'USD',
                    },
                    'frequency': 'MONTHLY',
                },
            ],
        },
        {
            'type': 'RECURRING',
            'description': 'Android Remote Access Unmetered Device Slot',
            'id': 'D68B3C05-1BA6-4360-BC69-12345EXAMPLE',
            'platform': 'ANDROID',
            'recurringCharges': [
                {
                    'cost': {
                        'amount': 250,
                        'currencyCode': 'USD',
                    },
                    'frequency': 'MONTHLY',
                },
            ],
        },
        {
            'type': 'RECURRING',
            'description': 'iOS Remote Access Unmetered Device Slot',
            'id': '552B4DAD-A6C9-45C4-94FB-12345EXAMPLE',
            'platform': 'IOS',
            'recurringCharges': [
                {
                    'cost': {
                        'amount': 250,
                        'currencyCode': 'USD',
                    },
                    'frequency': 'MONTHLY',
                },
            ],
        },
    ],
    'ResponseMetadata': {
        '...': '...',
    },
}
list_projects(**kwargs)

Gets information about projects.

See also: AWS API Documentation

Request Syntax

response = client.list_projects(
    arn='string',
    nextToken='string'
)
Parameters
  • arn (string) -- Optional. If no Amazon Resource Name (ARN) is specified, then AWS Device Farm returns a list of all projects for the AWS account. You can also specify a project ARN.
  • nextToken (string) -- An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
Return type

dict

Returns

Response Syntax

{
    'projects': [
        {
            'arn': 'string',
            'name': 'string',
            'defaultJobTimeoutMinutes': 123,
            'created': datetime(2015, 1, 1)
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the result of a list projects request.

    • projects (list) --

      Information about the projects.

      • (dict) --

        Represents an operating-system neutral workspace for running and managing tests.

        • arn (string) --

          The project's ARN.

        • name (string) --

          The project's name.

        • defaultJobTimeoutMinutes (integer) --

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

        • created (datetime) --

          When the project was created.

    • nextToken (string) --

      If the number of items that are returned is significantly large, this is an identifier that is also returned, which can be used in a subsequent call to this operation to return the next set of items in the list.

Examples

The following example returns information about the specified project in Device Farm.

response = client.list_projects(
    arn='arn:aws:devicefarm:us-west-2:123456789101:project:7ad300ed-8183-41a7-bf94-12345EXAMPLE',
    # A dynamically generated value, used for paginating results.
    nextToken='RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE',
)

print(response)

Expected Output:

{
    'projects': [
        {
            'name': 'My Test Project',
            'arn': 'arn:aws:devicefarm:us-west-2:183774035805:project:7ad300ed-8183-41a7-bf94-12345EXAMPLE',
            'created': datetime(2016, 1, 19, 0, 27, 42, 1, 19, 0),
        },
        {
            'name': 'Hello World',
            'arn': 'arn:aws:devicefarm:us-west-2:183774035805:project:d6b087d9-56db-4e44-b9ec-12345EXAMPLE',
            'created': datetime(2016, 8, 4, 22, 35, 12, 3, 217, 0),
        },
    ],
    'ResponseMetadata': {
        '...': '...',
    },
}
list_remote_access_sessions(**kwargs)

Returns a list of all currently running remote access sessions.

See also: AWS API Documentation

Request Syntax

response = client.list_remote_access_sessions(
    arn='string',
    nextToken='string'
)
Parameters
  • arn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the project about which you are requesting information.

  • nextToken (string) -- An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
Return type

dict

Returns

Response Syntax

{
    'remoteAccessSessions': [
        {
            'arn': 'string',
            'name': 'string',
            'created': datetime(2015, 1, 1),
            'status': 'PENDING'|'PENDING_CONCURRENCY'|'PENDING_DEVICE'|'PROCESSING'|'SCHEDULING'|'PREPARING'|'RUNNING'|'COMPLETED'|'STOPPING',
            'result': 'PENDING'|'PASSED'|'WARNED'|'FAILED'|'SKIPPED'|'ERRORED'|'STOPPED',
            'message': 'string',
            'started': datetime(2015, 1, 1),
            'stopped': datetime(2015, 1, 1),
            'device': {
                'arn': 'string',
                'name': 'string',
                'manufacturer': 'string',
                'model': 'string',
                'modelId': 'string',
                'formFactor': 'PHONE'|'TABLET',
                'platform': 'ANDROID'|'IOS',
                'os': 'string',
                'cpu': {
                    'frequency': 'string',
                    'architecture': 'string',
                    'clock': 123.0
                },
                'resolution': {
                    'width': 123,
                    'height': 123
                },
                'heapSize': 123,
                'memory': 123,
                'image': 'string',
                'carrier': 'string',
                'radio': 'string',
                'remoteAccessEnabled': True|False,
                'remoteDebugEnabled': True|False,
                'fleetType': 'string',
                'fleetName': 'string',
                'instances': [
                    {
                        'arn': 'string',
                        'deviceArn': 'string',
                        'labels': [
                            'string',
                        ],
                        'status': 'IN_USE'|'PREPARING'|'AVAILABLE'|'NOT_AVAILABLE',
                        'udid': 'string',
                        'instanceProfile': {
                            'arn': 'string',
                            'packageCleanup': True|False,
                            'excludeAppPackagesFromCleanup': [
                                'string',
                            ],
                            'rebootAfterUse': True|False,
                            'name': 'string',
                            'description': 'string'
                        }
                    },
                ],
                'availability': 'TEMPORARY_NOT_AVAILABLE'|'BUSY'|'AVAILABLE'|'HIGHLY_AVAILABLE'
            },
            'instanceArn': 'string',
            'remoteDebugEnabled': True|False,
            'remoteRecordEnabled': True|False,
            'remoteRecordAppArn': 'string',
            'hostAddress': 'string',
            'clientId': 'string',
            'billingMethod': 'METERED'|'UNMETERED',
            'deviceMinutes': {
                'total': 123.0,
                'metered': 123.0,
                'unmetered': 123.0
            },
            'endpoint': 'string',
            'deviceUdid': 'string',
            'interactionMode': 'INTERACTIVE'|'NO_VIDEO'|'VIDEO_ONLY',
            'skipAppResign': True|False
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the response from the server after AWS Device Farm makes a request to return information about the remote access session.

    • remoteAccessSessions (list) --

      A container representing the metadata from the service about each remote access session you are requesting.

      • (dict) --

        Represents information about the remote access session.

        • arn (string) --

          The Amazon Resource Name (ARN) of the remote access session.

        • name (string) --

          The name of the remote access session.

        • created (datetime) --

          The date and time the remote access session was created.

        • status (string) --

          The status of the remote access session. Can be any of the following:

          • PENDING: A pending status.
          • PENDING_CONCURRENCY: A pending concurrency status.
          • PENDING_DEVICE: A pending device status.
          • PROCESSING: A processing status.
          • SCHEDULING: A scheduling status.
          • PREPARING: A preparing status.
          • RUNNING: A running status.
          • COMPLETED: A completed status.
          • STOPPING: A stopping status.
        • result (string) --

          The result of the remote access session. Can be any of the following:

          • PENDING: A pending condition.
          • PASSED: A passing condition.
          • WARNED: A warning condition.
          • FAILED: A failed condition.
          • SKIPPED: A skipped condition.
          • ERRORED: An error condition.
          • STOPPED: A stopped condition.
        • message (string) --

          A message about the remote access session.

        • started (datetime) --

          The date and time the remote access session was started.

        • stopped (datetime) --

          The date and time the remote access session was stopped.

        • device (dict) --

          The device (phone or tablet) used in the remote access session.

          • arn (string) --

            The device's ARN.

          • name (string) --

            The device's display name.

          • manufacturer (string) --

            The device's manufacturer name.

          • model (string) --

            The device's model name.

          • modelId (string) --

            The device's model ID.

          • formFactor (string) --

            The device's form factor.

            Allowed values include:

            • PHONE: The phone form factor.
            • TABLET: The tablet form factor.
          • platform (string) --

            The device's platform.

            Allowed values include:

            • ANDROID: The Android platform.
            • IOS: The iOS platform.
          • os (string) --

            The device's operating system type.

          • cpu (dict) --

            Information about the device's CPU.

            • frequency (string) --

              The CPU's frequency.

            • architecture (string) --

              The CPU's architecture, for example x86 or ARM.

            • clock (float) --

              The clock speed of the device's CPU, expressed in hertz (Hz). For example, a 1.2 GHz CPU is expressed as 1200000000.

          • resolution (dict) --

            The resolution of the device.

            • width (integer) --

              The screen resolution's width, expressed in pixels.

            • height (integer) --

              The screen resolution's height, expressed in pixels.

          • heapSize (integer) --

            The device's heap size, expressed in bytes.

          • memory (integer) --

            The device's total memory size, expressed in bytes.

          • image (string) --

            The device's image name.

          • carrier (string) --

            The device's carrier.

          • radio (string) --

            The device's radio.

          • remoteAccessEnabled (boolean) --

            Specifies whether remote access has been enabled for the specified device.

          • remoteDebugEnabled (boolean) --

            This flag is set to true if remote debugging is enabled for the device.

            Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

          • fleetType (string) --

            The type of fleet to which this device belongs. Possible values for fleet type are PRIVATE and PUBLIC.

          • fleetName (string) --

            The name of the fleet to which this device belongs.

          • instances (list) --

            The instances belonging to this device.

            • (dict) --

              Represents the device instance.

              • arn (string) --

                The Amazon Resource Name (ARN) of the device instance.

              • deviceArn (string) --

                The Amazon Resource Name (ARN) of the device.

              • labels (list) --

                An array of strings describing the device instance.

                • (string) --
              • status (string) --

                The status of the device instance. Valid values are listed below.

              • udid (string) --

                Unique device identifier for the device instance.

              • instanceProfile (dict) --

                A object containing information about the instance profile.

                • arn (string) --

                  The Amazon Resource Name (ARN) of the instance profile.

                • packageCleanup (boolean) --

                  When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.

                • excludeAppPackagesFromCleanup (list) --

                  An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

                  The list of packages is only considered if you set packageCleanup to true .

                  • (string) --
                • rebootAfterUse (boolean) --

                  When set to true , Device Farm will reboot the instance after a test run. The default value is true .

                • name (string) --

                  The name of the instance profile.

                • description (string) --

                  The description of the instance profile.

          • availability (string) --

            Reflects how likely a device will be available for a test run. It is currently available in the ListDevices and GetDevice API methods.

        • instanceArn (string) --

          The Amazon Resource Name (ARN) of the instance.

        • remoteDebugEnabled (boolean) --

          This flag is set to true if remote debugging is enabled for the remote access session.

          Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

        • remoteRecordEnabled (boolean) --

          This flag is set to true if remote recording is enabled for the remote access session.

        • remoteRecordAppArn (string) --

          The Amazon Resource Name (ARN) for the app to be recorded in the remote access session.

        • hostAddress (string) --

          IP address of the EC2 host where you need to connect to remotely debug devices. Only returned if remote debugging is enabled for the remote access session.

          Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

        • clientId (string) --

          Unique identifier of your client for the remote access session. Only returned if remote debugging is enabled for the remote access session.

          Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

        • billingMethod (string) --

          The billing method of the remote access session. Possible values include METERED or UNMETERED . For more information about metered devices, see AWS Device Farm terminology ."

        • deviceMinutes (dict) --

          The number of minutes a device is used in a remote access session (including setup and teardown minutes).

          • total (float) --

            When specified, represents the total minutes used by the resource to run tests.

          • metered (float) --

            When specified, represents only the sum of metered minutes used by the resource to run tests.

          • unmetered (float) --

            When specified, represents only the sum of unmetered minutes used by the resource to run tests.

        • endpoint (string) --

          The endpoint for the remote access sesssion.

        • deviceUdid (string) --

          Unique device identifier for the remote device. Only returned if remote debugging is enabled for the remote access session.

          Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

        • interactionMode (string) --

          The interaction mode of the remote access session. Valid values are:

          • INTERACTIVE: You can interact with the iOS device by viewing, touching, and rotating the screen. You cannot run XCUITest framework-based tests in this mode.
          • NO_VIDEO: You are connected to the device but cannot interact with it or view the screen. This mode has the fastest test execution speed. You can run XCUITest framework-based tests in this mode.
          • VIDEO_ONLY: You can view the screen but cannot touch or rotate it. You can run XCUITest framework-based tests and watch the screen in this mode.
        • skipAppResign (boolean) --

          When set to true , for private devices, Device Farm will not sign your app again. For public devices, Device Farm always signs your apps again and this parameter has no effect.

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

    • nextToken (string) --

      An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.

Examples

The following example returns information about a specific Device Farm remote access session.

response = client.list_remote_access_sessions(
    # You can get the Amazon Resource Name (ARN) of the session by using the list-sessions CLI command.
    arn='arn:aws:devicefarm:us-west-2:123456789101:session:EXAMPLE-GUID-123-456',
    # A dynamically generated value, used for paginating results.
    nextToken='RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE=',
)

print(response)

Expected Output:

{
    'remoteAccessSessions': [
    ],
    'ResponseMetadata': {
        '...': '...',
    },
}
list_runs(**kwargs)

Gets information about runs, given an AWS Device Farm project ARN.

See also: AWS API Documentation

Request Syntax

response = client.list_runs(
    arn='string',
    nextToken='string'
)
Parameters
  • arn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the project for which you want to list runs.

  • nextToken (string) -- An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
Return type

dict

Returns

Response Syntax

{
    'runs': [
        {
            'arn': 'string',
            'name': 'string',
            'type': 'BUILTIN_FUZZ'|'BUILTIN_EXPLORER'|'WEB_PERFORMANCE_PROFILE'|'APPIUM_JAVA_JUNIT'|'APPIUM_JAVA_TESTNG'|'APPIUM_PYTHON'|'APPIUM_NODE'|'APPIUM_RUBY'|'APPIUM_WEB_JAVA_JUNIT'|'APPIUM_WEB_JAVA_TESTNG'|'APPIUM_WEB_PYTHON'|'APPIUM_WEB_NODE'|'APPIUM_WEB_RUBY'|'CALABASH'|'INSTRUMENTATION'|'UIAUTOMATION'|'UIAUTOMATOR'|'XCTEST'|'XCTEST_UI'|'REMOTE_ACCESS_RECORD'|'REMOTE_ACCESS_REPLAY',
            'platform': 'ANDROID'|'IOS',
            'created': datetime(2015, 1, 1),
            'status': 'PENDING'|'PENDING_CONCURRENCY'|'PENDING_DEVICE'|'PROCESSING'|'SCHEDULING'|'PREPARING'|'RUNNING'|'COMPLETED'|'STOPPING',
            'result': 'PENDING'|'PASSED'|'WARNED'|'FAILED'|'SKIPPED'|'ERRORED'|'STOPPED',
            'started': datetime(2015, 1, 1),
            'stopped': datetime(2015, 1, 1),
            'counters': {
                'total': 123,
                'passed': 123,
                'failed': 123,
                'warned': 123,
                'errored': 123,
                'stopped': 123,
                'skipped': 123
            },
            'message': 'string',
            'totalJobs': 123,
            'completedJobs': 123,
            'billingMethod': 'METERED'|'UNMETERED',
            'deviceMinutes': {
                'total': 123.0,
                'metered': 123.0,
                'unmetered': 123.0
            },
            'networkProfile': {
                'arn': 'string',
                'name': 'string',
                'description': 'string',
                'type': 'CURATED'|'PRIVATE',
                'uplinkBandwidthBits': 123,
                'downlinkBandwidthBits': 123,
                'uplinkDelayMs': 123,
                'downlinkDelayMs': 123,
                'uplinkJitterMs': 123,
                'downlinkJitterMs': 123,
                'uplinkLossPercent': 123,
                'downlinkLossPercent': 123
            },
            'parsingResultUrl': 'string',
            'resultCode': 'PARSING_FAILED'|'VPC_ENDPOINT_SETUP_FAILED',
            'seed': 123,
            'appUpload': 'string',
            'eventCount': 123,
            'jobTimeoutMinutes': 123,
            'devicePoolArn': 'string',
            'locale': 'string',
            'radios': {
                'wifi': True|False,
                'bluetooth': True|False,
                'nfc': True|False,
                'gps': True|False
            },
            'location': {
                'latitude': 123.0,
                'longitude': 123.0
            },
            'customerArtifactPaths': {
                'iosPaths': [
                    'string',
                ],
                'androidPaths': [
                    'string',
                ],
                'deviceHostPaths': [
                    'string',
                ]
            },
            'webUrl': 'string',
            'skipAppResign': True|False,
            'testSpecArn': 'string',
            'deviceSelectionResult': {
                'filters': [
                    {
                        'attribute': 'ARN'|'PLATFORM'|'OS_VERSION'|'MODEL'|'AVAILABILITY'|'FORM_FACTOR'|'MANUFACTURER'|'REMOTE_ACCESS_ENABLED'|'REMOTE_DEBUG_ENABLED'|'INSTANCE_ARN'|'INSTANCE_LABELS'|'FLEET_TYPE',
                        'operator': 'EQUALS'|'LESS_THAN'|'LESS_THAN_OR_EQUALS'|'GREATER_THAN'|'GREATER_THAN_OR_EQUALS'|'IN'|'NOT_IN'|'CONTAINS',
                        'values': [
                            'string',
                        ]
                    },
                ],
                'matchedDevicesCount': 123,
                'maxDevices': 123
            }
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the result of a list runs request.

    • runs (list) --

      Information about the runs.

      • (dict) --

        Represents a test run on a set of devices with a given app package, test parameters, etc.

        • arn (string) --

          The run's ARN.

        • name (string) --

          The run's name.

        • type (string) --

          The run's type.

          Must be one of the following values:

          • BUILTIN_FUZZ: The built-in fuzz type.
          • BUILTIN_EXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.
          • APPIUM_JAVA_JUNIT: The Appium Java JUnit type.
          • APPIUM_JAVA_TESTNG: The Appium Java TestNG type.
          • APPIUM_PYTHON: The Appium Python type.
          • APPIUM_NODE: The Appium Node.js type.
          • APPIUM_RUBY: The Appium Ruby type.
          • APPIUM_WEB_JAVA_JUNIT: The Appium Java JUnit type for web apps.
          • APPIUM_WEB_JAVA_TESTNG: The Appium Java TestNG type for web apps.
          • APPIUM_WEB_PYTHON: The Appium Python type for web apps.
          • APPIUM_WEB_NODE: The Appium Node.js type for web apps.
          • APPIUM_WEB_RUBY: The Appium Ruby type for web apps.
          • CALABASH: The Calabash type.
          • INSTRUMENTATION: The Instrumentation type.
          • UIAUTOMATION: The uiautomation type.
          • UIAUTOMATOR: The uiautomator type.
          • XCTEST: The Xcode test type.
          • XCTEST_UI: The Xcode UI test type.
        • platform (string) --

          The run's platform.

          Allowed values include:

          • ANDROID: The Android platform.
          • IOS: The iOS platform.
        • created (datetime) --

          When the run was created.

        • status (string) --

          The run's status.

          Allowed values include:

          • PENDING: A pending status.
          • PENDING_CONCURRENCY: A pending concurrency status.
          • PENDING_DEVICE: A pending device status.
          • PROCESSING: A processing status.
          • SCHEDULING: A scheduling status.
          • PREPARING: A preparing status.
          • RUNNING: A running status.
          • COMPLETED: A completed status.
          • STOPPING: A stopping status.
        • result (string) --

          The run's result.

          Allowed values include:

          • PENDING: A pending condition.
          • PASSED: A passing condition.
          • WARNED: A warning condition.
          • FAILED: A failed condition.
          • SKIPPED: A skipped condition.
          • ERRORED: An error condition.
          • STOPPED: A stopped condition.
        • started (datetime) --

          The run's start time.

        • stopped (datetime) --

          The run's stop time.

        • counters (dict) --

          The run's result counters.

          • total (integer) --

            The total number of entities.

          • passed (integer) --

            The number of passed entities.

          • failed (integer) --

            The number of failed entities.

          • warned (integer) --

            The number of warned entities.

          • errored (integer) --

            The number of errored entities.

          • stopped (integer) --

            The number of stopped entities.

          • skipped (integer) --

            The number of skipped entities.

        • message (string) --

          A message about the run's result.

        • totalJobs (integer) --

          The total number of jobs for the run.

        • completedJobs (integer) --

          The total number of completed jobs.

        • billingMethod (string) --

          Specifies the billing method for a test run: metered or unmetered . If the parameter is not specified, the default value is metered .

        • deviceMinutes (dict) --

          Represents the total (metered or unmetered) minutes used by the test run.

          • total (float) --

            When specified, represents the total minutes used by the resource to run tests.

          • metered (float) --

            When specified, represents only the sum of metered minutes used by the resource to run tests.

          • unmetered (float) --

            When specified, represents only the sum of unmetered minutes used by the resource to run tests.

        • networkProfile (dict) --

          The network profile being used for a test run.

          • arn (string) --

            The Amazon Resource Name (ARN) of the network profile.

          • name (string) --

            The name of the network profile.

          • description (string) --

            The description of the network profile.

          • type (string) --

            The type of network profile. Valid values are listed below.

          • uplinkBandwidthBits (integer) --

            The data throughput rate in bits per second, as an integer from 0 to 104857600.

          • downlinkBandwidthBits (integer) --

            The data throughput rate in bits per second, as an integer from 0 to 104857600.

          • uplinkDelayMs (integer) --

            Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.

          • downlinkDelayMs (integer) --

            Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.

          • uplinkJitterMs (integer) --

            Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.

          • downlinkJitterMs (integer) --

            Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.

          • uplinkLossPercent (integer) --

            Proportion of transmitted packets that fail to arrive from 0 to 100 percent.

          • downlinkLossPercent (integer) --

            Proportion of received packets that fail to arrive from 0 to 100 percent.

        • parsingResultUrl (string) --

          Read-only URL for an object in S3 bucket where you can get the parsing results of the test package. If the test package doesn't parse, the reason why it doesn't parse appears in the file that this URL points to.

        • resultCode (string) --

          Supporting field for the result field. Set only if result is SKIPPED . PARSING_FAILED if the result is skipped because of test package parsing failure.

        • seed (integer) --

          For fuzz tests, this is a seed to use for randomizing the UI fuzz test. Using the same seed value between tests ensures identical event sequences.

        • appUpload (string) --

          An app to upload or that has been uploaded.

        • eventCount (integer) --

          For fuzz tests, this is the number of events, between 1 and 10000, that the UI fuzz test should perform.

        • jobTimeoutMinutes (integer) --

          The number of minutes the job will execute before it times out.

        • devicePoolArn (string) --

          The ARN of the device pool for the run.

        • locale (string) --

          Information about the locale that is used for the run.

        • radios (dict) --

          Information about the radio states for the run.

          • wifi (boolean) --

            True if Wi-Fi is enabled at the beginning of the test; otherwise, false.

          • bluetooth (boolean) --

            True if Bluetooth is enabled at the beginning of the test; otherwise, false.

          • nfc (boolean) --

            True if NFC is enabled at the beginning of the test; otherwise, false.

          • gps (boolean) --

            True if GPS is enabled at the beginning of the test; otherwise, false.

        • location (dict) --

          Information about the location that is used for the run.

          • latitude (float) --

            The latitude.

          • longitude (float) --

            The longitude.

        • customerArtifactPaths (dict) --

          Output CustomerArtifactPaths object for the test run.

          • iosPaths (list) --

            Comma-separated list of paths on the iOS device where the artifacts generated by the customer's tests will be pulled from.

            • (string) --
          • androidPaths (list) --

            Comma-separated list of paths on the Android device where the artifacts generated by the customer's tests will be pulled from.

            • (string) --
          • deviceHostPaths (list) --

            Comma-separated list of paths in the test execution environment where the artifacts generated by the customer's tests will be pulled from.

            • (string) --
        • webUrl (string) --

          The Device Farm console URL for the recording of the run.

        • skipAppResign (boolean) --

          When set to true , for private devices, Device Farm will not sign your app again. For public devices, Device Farm always signs your apps again and this parameter has no effect.

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

        • testSpecArn (string) --

          The ARN of the YAML-formatted test specification for the run.

        • deviceSelectionResult (dict) --

          The results of a device filter used to select the devices for a test run.

          • filters (list) --

            The filters in a device selection result.

            • (dict) --

              Represents a device filter used to select a set of devices to be included in a test run. This data structure is passed in as the deviceSelectionConfiguration parameter to ScheduleRun. For an example of the JSON request syntax, see ScheduleRun .

              It is also passed in as the filters parameter to ListDevices. For an example of the JSON request syntax, see ListDevices .

              • attribute (string) --

                The aspect of a device such as platform or model used as the selection criteria in a device filter.

                The supported operators for each attribute are provided in the following list.

                ARN

                The Amazon Resource Name (ARN) of the device. For example, "arn:aws:devicefarm:us-west-2::device:12345Example".

                Supported operators : EQUALS , IN , NOT_IN

                PLATFORM

                The device platform. Valid values are "ANDROID" or "IOS".

                Supported operators : EQUALS

                OS_VERSION

                The operating system version. For example, "10.3.2".

                Supported operators : EQUALS , GREATER_THAN , GREATER_THAN_OR_EQUALS , IN , LESS_THAN , LESS_THAN_OR_EQUALS , NOT_IN

                MODEL

                The device model. For example, "iPad 5th Gen".

                Supported operators : CONTAINS , EQUALS , IN , NOT_IN

                AVAILABILITY

                The current availability of the device. Valid values are "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".

                Supported operators : EQUALS

                FORM_FACTOR

                The device form factor. Valid values are "PHONE" or "TABLET".

                Supported operators : EQUALS

                MANUFACTURER

                The device manufacturer. For example, "Apple".

                Supported operators : EQUALS , IN , NOT_IN

                REMOTE_ACCESS_ENABLED

                Whether the device is enabled for remote access. Valid values are "TRUE" or "FALSE".

                Supported operators : EQUALS

                REMOTE_DEBUG_ENABLED

                Ignored. Whether the device is enabled for remote debugging. Valid values are "TRUE" or "FALSE".

                Supported operators : EQUALS

                This filter will be ignored, as remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

                INSTANCE_ARN

                The Amazon Resource Name (ARN) of the device instance.

                Supported operators : EQUALS , IN , NOT_IN

                INSTANCE_LABELS

                The label of the device instance.

                Supported operators : CONTAINS

                FLEET_TYPE

                The fleet type. Valid values are "PUBLIC" or "PRIVATE".

                Supported operators : EQUALS

              • operator (string) --

                Specifies how Device Farm compares the filter's attribute to the value. For the operators that are supported by each attribute, see the attribute descriptions.

              • values (list) --

                An array of one or more filter values used in a device filter.

                Operator Values

                • The IN and NOT_IN operators can take a values array that has more than one element.
                • The other operators require an array with a single element.

                Attribute Values

                • The PLATFORM attribute can be set to "ANDROID" or "IOS".
                • The AVAILABILITY attribute can be set to "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".
                • The FORM_FACTOR attribute can be set to "PHONE" or "TABLET".
                • The FLEET_TYPE attribute can be set to "PUBLIC" or "PRIVATE".
                • (string) --
          • matchedDevicesCount (integer) --

            The number of devices that matched the device filter selection criteria.

          • maxDevices (integer) --

            The maximum number of devices to be selected by a device filter and included in a test run.

    • nextToken (string) --

      If the number of items that are returned is significantly large, this is an identifier that is also returned, which can be used in a subsequent call to this operation to return the next set of items in the list.

Examples

The following example returns information about a specific test run.

response = client.list_runs(
    # You can get the Amazon Resource Name (ARN) of the run by using the list-runs CLI command.
    arn='arn:aws:devicefarm:us-west-2:123456789101:run:5e01a8c7-c861-4c0a-b1d5-5ec6e6c6dd23/0fcac17b-6122-44d7-ae5a-12345EXAMPLE',
    # A dynamically generated value, used for paginating results.
    nextToken='RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE',
)

print(response)

Expected Output:

{
    'runs': [
        {
            'name': 'My Test Run',
            'type': 'BUILTIN_EXPLORER',
            'arn': 'arn:aws:devicefarm:us-west-2:123456789101:run:5e01a8c7-c861-4c0a-b1d5-5ec6e6c6dd23/0fcac17b-6122-44d7-ae5a-12345EXAMPLE',
            'billingMethod': 'METERED',
            'completedJobs': 0,
            'counters': {
                'errored': 0,
                'failed': 0,
                'passed': 0,
                'skipped': 0,
                'stopped': 0,
                'total': 0,
                'warned': 0,
            },
            'created': datetime(2016, 8, 31, 18, 18, 29, 2, 244, 0),
            'deviceMinutes': {
                'metered': 0.0,
                'total': 0.0,
                'unmetered': 0.0,
            },
            'platform': 'ANDROID',
            'result': 'PENDING',
            'status': 'RUNNING',
            'totalJobs': 3,
        },
    ],
    'ResponseMetadata': {
        '...': '...',
    },
}
list_samples(**kwargs)

Gets information about samples, given an AWS Device Farm job ARN.

See also: AWS API Documentation

Request Syntax

response = client.list_samples(
    arn='string',
    nextToken='string'
)
Parameters
  • arn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the job used to list samples.

  • nextToken (string) -- An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
Return type

dict

Returns

Response Syntax

{
    'samples': [
        {
            'arn': 'string',
            'type': 'CPU'|'MEMORY'|'THREADS'|'RX_RATE'|'TX_RATE'|'RX'|'TX'|'NATIVE_FRAMES'|'NATIVE_FPS'|'NATIVE_MIN_DRAWTIME'|'NATIVE_AVG_DRAWTIME'|'NATIVE_MAX_DRAWTIME'|'OPENGL_FRAMES'|'OPENGL_FPS'|'OPENGL_MIN_DRAWTIME'|'OPENGL_AVG_DRAWTIME'|'OPENGL_MAX_DRAWTIME',
            'url': 'string'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the result of a list samples request.

    • samples (list) --

      Information about the samples.

      • (dict) --

        Represents a sample of performance data.

        • arn (string) --

          The sample's ARN.

        • type (string) --

          The sample's type.

          Must be one of the following values:

          • CPU: A CPU sample type. This is expressed as the app processing CPU time (including child processes) as reported by process, as a percentage.
          • MEMORY: A memory usage sample type. This is expressed as the total proportional set size of an app process, in kilobytes.
          • NATIVE_AVG_DRAWTIME
          • NATIVE_FPS
          • NATIVE_FRAMES
          • NATIVE_MAX_DRAWTIME
          • NATIVE_MIN_DRAWTIME
          • OPENGL_AVG_DRAWTIME
          • OPENGL_FPS
          • OPENGL_FRAMES
          • OPENGL_MAX_DRAWTIME
          • OPENGL_MIN_DRAWTIME
          • RX
          • RX_RATE: The total number of bytes per second (TCP and UDP) that are sent, by app process.
          • THREADS: A threads sample type. This is expressed as the total number of threads per app process.
          • TX
          • TX_RATE: The total number of bytes per second (TCP and UDP) that are received, by app process.
        • url (string) --

          The pre-signed Amazon S3 URL that can be used with a corresponding GET request to download the sample's file.

    • nextToken (string) --

      If the number of items that are returned is significantly large, this is an identifier that is also returned, which can be used in a subsequent call to this operation to return the next set of items in the list.

Examples

The following example returns information about samples, given a specific Device Farm project.

response = client.list_samples(
    # You can get the Amazon Resource Name (ARN) of the project by using the list-projects CLI command.
    arn='arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456',
    # A dynamically generated value, used for paginating results.
    nextToken='RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE',
)

print(response)

Expected Output:

{
    'samples': [
    ],
    'ResponseMetadata': {
        '...': '...',
    },
}
list_suites(**kwargs)

Gets information about test suites for a given job.

See also: AWS API Documentation

Request Syntax

response = client.list_suites(
    arn='string',
    nextToken='string'
)
Parameters
  • arn (string) --

    [REQUIRED]

    The job's Amazon Resource Name (ARN).

  • nextToken (string) -- An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
Return type

dict

Returns

Response Syntax

{
    'suites': [
        {
            'arn': 'string',
            'name': 'string',
            'type': 'BUILTIN_FUZZ'|'BUILTIN_EXPLORER'|'WEB_PERFORMANCE_PROFILE'|'APPIUM_JAVA_JUNIT'|'APPIUM_JAVA_TESTNG'|'APPIUM_PYTHON'|'APPIUM_NODE'|'APPIUM_RUBY'|'APPIUM_WEB_JAVA_JUNIT'|'APPIUM_WEB_JAVA_TESTNG'|'APPIUM_WEB_PYTHON'|'APPIUM_WEB_NODE'|'APPIUM_WEB_RUBY'|'CALABASH'|'INSTRUMENTATION'|'UIAUTOMATION'|'UIAUTOMATOR'|'XCTEST'|'XCTEST_UI'|'REMOTE_ACCESS_RECORD'|'REMOTE_ACCESS_REPLAY',
            'created': datetime(2015, 1, 1),
            'status': 'PENDING'|'PENDING_CONCURRENCY'|'PENDING_DEVICE'|'PROCESSING'|'SCHEDULING'|'PREPARING'|'RUNNING'|'COMPLETED'|'STOPPING',
            'result': 'PENDING'|'PASSED'|'WARNED'|'FAILED'|'SKIPPED'|'ERRORED'|'STOPPED',
            'started': datetime(2015, 1, 1),
            'stopped': datetime(2015, 1, 1),
            'counters': {
                'total': 123,
                'passed': 123,
                'failed': 123,
                'warned': 123,
                'errored': 123,
                'stopped': 123,
                'skipped': 123
            },
            'message': 'string',
            'deviceMinutes': {
                'total': 123.0,
                'metered': 123.0,
                'unmetered': 123.0
            }
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the result of a list suites request.

    • suites (list) --

      Information about the suites.

      • (dict) --

        Represents a collection of one or more tests.

        • arn (string) --

          The suite's ARN.

        • name (string) --

          The suite's name.

        • type (string) --

          The suite's type.

          Must be one of the following values:

          • BUILTIN_FUZZ: The built-in fuzz type.
          • BUILTIN_EXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.
          • APPIUM_JAVA_JUNIT: The Appium Java JUnit type.
          • APPIUM_JAVA_TESTNG: The Appium Java TestNG type.
          • APPIUM_PYTHON: The Appium Python type.
          • APPIUM_NODE: The Appium Node.js type.
          • APPIUM_RUBY: The Appium Ruby type.
          • APPIUM_WEB_JAVA_JUNIT: The Appium Java JUnit type for web apps.
          • APPIUM_WEB_JAVA_TESTNG: The Appium Java TestNG type for web apps.
          • APPIUM_WEB_PYTHON: The Appium Python type for web apps.
          • APPIUM_WEB_NODE: The Appium Node.js type for web apps.
          • APPIUM_WEB_RUBY: The Appium Ruby type for web apps.
          • CALABASH: The Calabash type.
          • INSTRUMENTATION: The Instrumentation type.
          • UIAUTOMATION: The uiautomation type.
          • UIAUTOMATOR: The uiautomator type.
          • XCTEST: The Xcode test type.
          • XCTEST_UI: The Xcode UI test type.
        • created (datetime) --

          When the suite was created.

        • status (string) --

          The suite's status.

          Allowed values include:

          • PENDING: A pending status.
          • PENDING_CONCURRENCY: A pending concurrency status.
          • PENDING_DEVICE: A pending device status.
          • PROCESSING: A processing status.
          • SCHEDULING: A scheduling status.
          • PREPARING: A preparing status.
          • RUNNING: A running status.
          • COMPLETED: A completed status.
          • STOPPING: A stopping status.
        • result (string) --

          The suite's result.

          Allowed values include:

          • PENDING: A pending condition.
          • PASSED: A passing condition.
          • WARNED: A warning condition.
          • FAILED: A failed condition.
          • SKIPPED: A skipped condition.
          • ERRORED: An error condition.
          • STOPPED: A stopped condition.
        • started (datetime) --

          The suite's start time.

        • stopped (datetime) --

          The suite's stop time.

        • counters (dict) --

          The suite's result counters.

          • total (integer) --

            The total number of entities.

          • passed (integer) --

            The number of passed entities.

          • failed (integer) --

            The number of failed entities.

          • warned (integer) --

            The number of warned entities.

          • errored (integer) --

            The number of errored entities.

          • stopped (integer) --

            The number of stopped entities.

          • skipped (integer) --

            The number of skipped entities.

        • message (string) --

          A message about the suite's result.

        • deviceMinutes (dict) --

          Represents the total (metered or unmetered) minutes used by the test suite.

          • total (float) --

            When specified, represents the total minutes used by the resource to run tests.

          • metered (float) --

            When specified, represents only the sum of metered minutes used by the resource to run tests.

          • unmetered (float) --

            When specified, represents only the sum of unmetered minutes used by the resource to run tests.

    • nextToken (string) --

      If the number of items that are returned is significantly large, this is an identifier that is also returned, which can be used in a subsequent call to this operation to return the next set of items in the list.

Examples

The following example returns information about suites, given a specific Device Farm project.

response = client.list_suites(
    # You can get the Amazon Resource Name (ARN) of the project by using the list-projects CLI command.
    arn='arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456',
    # A dynamically generated value, used for paginating results.
    nextToken='RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE',
)

print(response)

Expected Output:

{
    'suites': [
    ],
    'ResponseMetadata': {
        '...': '...',
    },
}
list_tags_for_resource(**kwargs)

List the tags for an AWS Device Farm resource.

See also: AWS API Documentation

Request Syntax

response = client.list_tags_for_resource(
    ResourceARN='string'
)
Parameters
ResourceARN (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the resource(s) for which to list tags. You can associate tags with the following Device Farm resources: PROJECT , RUN , NETWORK_PROFILE , INSTANCE_PROFILE , DEVICE_INSTANCE , SESSION , DEVICE_POOL , DEVICE , and VPCE_CONFIGURATION .

Return type
dict
Returns
Response Syntax
{
    'Tags': [
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
}

Response Structure

  • (dict) --
    • Tags (list) --

      The tags to add to the resource. A tag is an array of key-value pairs. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.

      • (dict) --

        The metadata that you apply to a resource to help you categorize and organize it. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.

        • Key (string) --

          One part of a key-value pair that make up a tag. A key is a general label that acts like a category for more specific tag values.

        • Value (string) --

          The optional part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key).

list_tests(**kwargs)

Gets information about tests in a given test suite.

See also: AWS API Documentation

Request Syntax

response = client.list_tests(
    arn='string',
    nextToken='string'
)
Parameters
  • arn (string) --

    [REQUIRED]

    The test suite's Amazon Resource Name (ARN).

  • nextToken (string) -- An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
Return type

dict

Returns

Response Syntax

{
    'tests': [
        {
            'arn': 'string',
            'name': 'string',
            'type': 'BUILTIN_FUZZ'|'BUILTIN_EXPLORER'|'WEB_PERFORMANCE_PROFILE'|'APPIUM_JAVA_JUNIT'|'APPIUM_JAVA_TESTNG'|'APPIUM_PYTHON'|'APPIUM_NODE'|'APPIUM_RUBY'|'APPIUM_WEB_JAVA_JUNIT'|'APPIUM_WEB_JAVA_TESTNG'|'APPIUM_WEB_PYTHON'|'APPIUM_WEB_NODE'|'APPIUM_WEB_RUBY'|'CALABASH'|'INSTRUMENTATION'|'UIAUTOMATION'|'UIAUTOMATOR'|'XCTEST'|'XCTEST_UI'|'REMOTE_ACCESS_RECORD'|'REMOTE_ACCESS_REPLAY',
            'created': datetime(2015, 1, 1),
            'status': 'PENDING'|'PENDING_CONCURRENCY'|'PENDING_DEVICE'|'PROCESSING'|'SCHEDULING'|'PREPARING'|'RUNNING'|'COMPLETED'|'STOPPING',
            'result': 'PENDING'|'PASSED'|'WARNED'|'FAILED'|'SKIPPED'|'ERRORED'|'STOPPED',
            'started': datetime(2015, 1, 1),
            'stopped': datetime(2015, 1, 1),
            'counters': {
                'total': 123,
                'passed': 123,
                'failed': 123,
                'warned': 123,
                'errored': 123,
                'stopped': 123,
                'skipped': 123
            },
            'message': 'string',
            'deviceMinutes': {
                'total': 123.0,
                'metered': 123.0,
                'unmetered': 123.0
            }
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the result of a list tests request.

    • tests (list) --

      Information about the tests.

      • (dict) --

        Represents a condition that is evaluated.

        • arn (string) --

          The test's ARN.

        • name (string) --

          The test's name.

        • type (string) --

          The test's type.

          Must be one of the following values:

          • BUILTIN_FUZZ: The built-in fuzz type.
          • BUILTIN_EXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.
          • APPIUM_JAVA_JUNIT: The Appium Java JUnit type.
          • APPIUM_JAVA_TESTNG: The Appium Java TestNG type.
          • APPIUM_PYTHON: The Appium Python type.
          • APPIUM_NODE: The Appium Node.js type.
          • APPIUM_RUBY: The Appium Ruby type.
          • APPIUM_WEB_JAVA_JUNIT: The Appium Java JUnit type for web apps.
          • APPIUM_WEB_JAVA_TESTNG: The Appium Java TestNG type for web apps.
          • APPIUM_WEB_PYTHON: The Appium Python type for web apps.
          • APPIUM_WEB_NODE: The Appium Node.js type for web apps.
          • APPIUM_WEB_RUBY: The Appium Ruby type for web apps.
          • CALABASH: The Calabash type.
          • INSTRUMENTATION: The Instrumentation type.
          • UIAUTOMATION: The uiautomation type.
          • UIAUTOMATOR: The uiautomator type.
          • XCTEST: The Xcode test type.
          • XCTEST_UI: The Xcode UI test type.
        • created (datetime) --

          When the test was created.

        • status (string) --

          The test's status.

          Allowed values include:

          • PENDING: A pending status.
          • PENDING_CONCURRENCY: A pending concurrency status.
          • PENDING_DEVICE: A pending device status.
          • PROCESSING: A processing status.
          • SCHEDULING: A scheduling status.
          • PREPARING: A preparing status.
          • RUNNING: A running status.
          • COMPLETED: A completed status.
          • STOPPING: A stopping status.
        • result (string) --

          The test's result.

          Allowed values include:

          • PENDING: A pending condition.
          • PASSED: A passing condition.
          • WARNED: A warning condition.
          • FAILED: A failed condition.
          • SKIPPED: A skipped condition.
          • ERRORED: An error condition.
          • STOPPED: A stopped condition.
        • started (datetime) --

          The test's start time.

        • stopped (datetime) --

          The test's stop time.

        • counters (dict) --

          The test's result counters.

          • total (integer) --

            The total number of entities.

          • passed (integer) --

            The number of passed entities.

          • failed (integer) --

            The number of failed entities.

          • warned (integer) --

            The number of warned entities.

          • errored (integer) --

            The number of errored entities.

          • stopped (integer) --

            The number of stopped entities.

          • skipped (integer) --

            The number of skipped entities.

        • message (string) --

          A message about the test's result.

        • deviceMinutes (dict) --

          Represents the total (metered or unmetered) minutes used by the test.

          • total (float) --

            When specified, represents the total minutes used by the resource to run tests.

          • metered (float) --

            When specified, represents only the sum of metered minutes used by the resource to run tests.

          • unmetered (float) --

            When specified, represents only the sum of unmetered minutes used by the resource to run tests.

    • nextToken (string) --

      If the number of items that are returned is significantly large, this is an identifier that is also returned, which can be used in a subsequent call to this operation to return the next set of items in the list.

Examples

The following example returns information about tests, given a specific Device Farm project.

response = client.list_tests(
    # You can get the Amazon Resource Name (ARN) of the project by using the list-projects CLI command.
    arn='arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456',
    # A dynamically generated value, used for paginating results.
    nextToken='RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE',
)

print(response)

Expected Output:

{
    'tests': [
    ],
    'ResponseMetadata': {
        '...': '...',
    },
}
list_unique_problems(**kwargs)

Gets information about unique problems.

See also: AWS API Documentation

Request Syntax

response = client.list_unique_problems(
    arn='string',
    nextToken='string'
)
Parameters
  • arn (string) --

    [REQUIRED]

    The unique problems' ARNs.

  • nextToken (string) -- An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
Return type

dict

Returns

Response Syntax

{
    'uniqueProblems': {
        'string': [
            {
                'message': 'string',
                'problems': [
                    {
                        'run': {
                            'arn': 'string',
                            'name': 'string'
                        },
                        'job': {
                            'arn': 'string',
                            'name': 'string'
                        },
                        'suite': {
                            'arn': 'string',
                            'name': 'string'
                        },
                        'test': {
                            'arn': 'string',
                            'name': 'string'
                        },
                        'device': {
                            'arn': 'string',
                            'name': 'string',
                            'manufacturer': 'string',
                            'model': 'string',
                            'modelId': 'string',
                            'formFactor': 'PHONE'|'TABLET',
                            'platform': 'ANDROID'|'IOS',
                            'os': 'string',
                            'cpu': {
                                'frequency': 'string',
                                'architecture': 'string',
                                'clock': 123.0
                            },
                            'resolution': {
                                'width': 123,
                                'height': 123
                            },
                            'heapSize': 123,
                            'memory': 123,
                            'image': 'string',
                            'carrier': 'string',
                            'radio': 'string',
                            'remoteAccessEnabled': True|False,
                            'remoteDebugEnabled': True|False,
                            'fleetType': 'string',
                            'fleetName': 'string',
                            'instances': [
                                {
                                    'arn': 'string',
                                    'deviceArn': 'string',
                                    'labels': [
                                        'string',
                                    ],
                                    'status': 'IN_USE'|'PREPARING'|'AVAILABLE'|'NOT_AVAILABLE',
                                    'udid': 'string',
                                    'instanceProfile': {
                                        'arn': 'string',
                                        'packageCleanup': True|False,
                                        'excludeAppPackagesFromCleanup': [
                                            'string',
                                        ],
                                        'rebootAfterUse': True|False,
                                        'name': 'string',
                                        'description': 'string'
                                    }
                                },
                            ],
                            'availability': 'TEMPORARY_NOT_AVAILABLE'|'BUSY'|'AVAILABLE'|'HIGHLY_AVAILABLE'
                        },
                        'result': 'PENDING'|'PASSED'|'WARNED'|'FAILED'|'SKIPPED'|'ERRORED'|'STOPPED',
                        'message': 'string'
                    },
                ]
            },
        ]
    },
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the result of a list unique problems request.

    • uniqueProblems (dict) --

      Information about the unique problems.

      Allowed values include:

      • PENDING: A pending condition.
      • PASSED: A passing condition.
      • WARNED: A warning condition.
      • FAILED: A failed condition.
      • SKIPPED: A skipped condition.
      • ERRORED: An error condition.
      • STOPPED: A stopped condition.
      • (string) --

        • (list) --

          • (dict) --

            A collection of one or more problems, grouped by their result.

            • message (string) --

              A message about the unique problems' result.

            • problems (list) --

              Information about the problems.

              • (dict) --

                Represents a specific warning or failure.

                • run (dict) --

                  Information about the associated run.

                  • arn (string) --

                    The problem detail's ARN.

                  • name (string) --

                    The problem detail's name.

                • job (dict) --

                  Information about the associated job.

                  • arn (string) --

                    The problem detail's ARN.

                  • name (string) --

                    The problem detail's name.

                • suite (dict) --

                  Information about the associated suite.

                  • arn (string) --

                    The problem detail's ARN.

                  • name (string) --

                    The problem detail's name.

                • test (dict) --

                  Information about the associated test.

                  • arn (string) --

                    The problem detail's ARN.

                  • name (string) --

                    The problem detail's name.

                • device (dict) --

                  Information about the associated device.

                  • arn (string) --

                    The device's ARN.

                  • name (string) --

                    The device's display name.

                  • manufacturer (string) --

                    The device's manufacturer name.

                  • model (string) --

                    The device's model name.

                  • modelId (string) --

                    The device's model ID.

                  • formFactor (string) --

                    The device's form factor.

                    Allowed values include:

                    • PHONE: The phone form factor.
                    • TABLET: The tablet form factor.
                  • platform (string) --

                    The device's platform.

                    Allowed values include:

                    • ANDROID: The Android platform.
                    • IOS: The iOS platform.
                  • os (string) --

                    The device's operating system type.

                  • cpu (dict) --

                    Information about the device's CPU.

                    • frequency (string) --

                      The CPU's frequency.

                    • architecture (string) --

                      The CPU's architecture, for example x86 or ARM.

                    • clock (float) --

                      The clock speed of the device's CPU, expressed in hertz (Hz). For example, a 1.2 GHz CPU is expressed as 1200000000.

                  • resolution (dict) --

                    The resolution of the device.

                    • width (integer) --

                      The screen resolution's width, expressed in pixels.

                    • height (integer) --

                      The screen resolution's height, expressed in pixels.

                  • heapSize (integer) --

                    The device's heap size, expressed in bytes.

                  • memory (integer) --

                    The device's total memory size, expressed in bytes.

                  • image (string) --

                    The device's image name.

                  • carrier (string) --

                    The device's carrier.

                  • radio (string) --

                    The device's radio.

                  • remoteAccessEnabled (boolean) --

                    Specifies whether remote access has been enabled for the specified device.

                  • remoteDebugEnabled (boolean) --

                    This flag is set to true if remote debugging is enabled for the device.

                    Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

                  • fleetType (string) --

                    The type of fleet to which this device belongs. Possible values for fleet type are PRIVATE and PUBLIC.

                  • fleetName (string) --

                    The name of the fleet to which this device belongs.

                  • instances (list) --

                    The instances belonging to this device.

                    • (dict) --

                      Represents the device instance.

                      • arn (string) --

                        The Amazon Resource Name (ARN) of the device instance.

                      • deviceArn (string) --

                        The Amazon Resource Name (ARN) of the device.

                      • labels (list) --

                        An array of strings describing the device instance.

                        • (string) --
                      • status (string) --

                        The status of the device instance. Valid values are listed below.

                      • udid (string) --

                        Unique device identifier for the device instance.

                      • instanceProfile (dict) --

                        A object containing information about the instance profile.

                        • arn (string) --

                          The Amazon Resource Name (ARN) of the instance profile.

                        • packageCleanup (boolean) --

                          When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.

                        • excludeAppPackagesFromCleanup (list) --

                          An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

                          The list of packages is only considered if you set packageCleanup to true .

                          • (string) --
                        • rebootAfterUse (boolean) --

                          When set to true , Device Farm will reboot the instance after a test run. The default value is true .

                        • name (string) --

                          The name of the instance profile.

                        • description (string) --

                          The description of the instance profile.

                  • availability (string) --

                    Reflects how likely a device will be available for a test run. It is currently available in the ListDevices and GetDevice API methods.

                • result (string) --

                  The problem's result.

                  Allowed values include:

                  • PENDING: A pending condition.
                  • PASSED: A passing condition.
                  • WARNED: A warning condition.
                  • FAILED: A failed condition.
                  • SKIPPED: A skipped condition.
                  • ERRORED: An error condition.
                  • STOPPED: A stopped condition.
                • message (string) --

                  A message about the problem's result.

    • nextToken (string) --

      If the number of items that are returned is significantly large, this is an identifier that is also returned, which can be used in a subsequent call to this operation to return the next set of items in the list.

Examples

The following example returns information about unique problems, given a specific Device Farm project.

response = client.list_unique_problems(
    # You can get the Amazon Resource Name (ARN) of the project by using the list-projects CLI command.
    arn='arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456',
    # A dynamically generated value, used for paginating results.
    nextToken='RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE',
)

print(response)

Expected Output:

{
    'uniqueProblems': {
    },
    'ResponseMetadata': {
        '...': '...',
    },
}
list_uploads(**kwargs)

Gets information about uploads, given an AWS Device Farm project ARN.

See also: AWS API Documentation

Request Syntax

response = client.list_uploads(
    arn='string',
    type='ANDROID_APP'|'IOS_APP'|'WEB_APP'|'EXTERNAL_DATA'|'APPIUM_JAVA_JUNIT_TEST_PACKAGE'|'APPIUM_JAVA_TESTNG_TEST_PACKAGE'|'APPIUM_PYTHON_TEST_PACKAGE'|'APPIUM_NODE_TEST_PACKAGE'|'APPIUM_RUBY_TEST_PACKAGE'|'APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE'|'APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE'|'APPIUM_WEB_PYTHON_TEST_PACKAGE'|'APPIUM_WEB_NODE_TEST_PACKAGE'|'APPIUM_WEB_RUBY_TEST_PACKAGE'|'CALABASH_TEST_PACKAGE'|'INSTRUMENTATION_TEST_PACKAGE'|'UIAUTOMATION_TEST_PACKAGE'|'UIAUTOMATOR_TEST_PACKAGE'|'XCTEST_TEST_PACKAGE'|'XCTEST_UI_TEST_PACKAGE'|'APPIUM_JAVA_JUNIT_TEST_SPEC'|'APPIUM_JAVA_TESTNG_TEST_SPEC'|'APPIUM_PYTHON_TEST_SPEC'|'APPIUM_NODE_TEST_SPEC'|'APPIUM_RUBY_TEST_SPEC'|'APPIUM_WEB_JAVA_JUNIT_TEST_SPEC'|'APPIUM_WEB_JAVA_TESTNG_TEST_SPEC'|'APPIUM_WEB_PYTHON_TEST_SPEC'|'APPIUM_WEB_NODE_TEST_SPEC'|'APPIUM_WEB_RUBY_TEST_SPEC'|'INSTRUMENTATION_TEST_SPEC'|'XCTEST_UI_TEST_SPEC',
    nextToken='string'
)
Parameters
  • arn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the project for which you want to list uploads.

  • type (string) --

    The type of upload.

    Must be one of the following values:

    • ANDROID_APP: An Android upload.
    • IOS_APP: An iOS upload.
    • WEB_APP: A web application upload.
    • EXTERNAL_DATA: An external data upload.
    • APPIUM_JAVA_JUNIT_TEST_PACKAGE: An Appium Java JUnit test package upload.
    • APPIUM_JAVA_TESTNG_TEST_PACKAGE: An Appium Java TestNG test package upload.
    • APPIUM_PYTHON_TEST_PACKAGE: An Appium Python test package upload.
    • APPIUM_NODE_TEST_PACKAGE: An Appium Node.js test package upload.
    • APPIUM_RUBY_TEST_PACKAGE: An Appium Ruby test package upload.
    • APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE: An Appium Java JUnit test package upload for a web app.
    • APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE: An Appium Java TestNG test package upload for a web app.
    • APPIUM_WEB_PYTHON_TEST_PACKAGE: An Appium Python test package upload for a web app.
    • APPIUM_WEB_NODE_TEST_PACKAGE: An Appium Node.js test package upload for a web app.
    • APPIUM_WEB_RUBY_TEST_PACKAGE: An Appium Ruby test package upload for a web app.
    • CALABASH_TEST_PACKAGE: A Calabash test package upload.
    • INSTRUMENTATION_TEST_PACKAGE: An instrumentation upload.
    • UIAUTOMATION_TEST_PACKAGE: A uiautomation test package upload.
    • UIAUTOMATOR_TEST_PACKAGE: A uiautomator test package upload.
    • XCTEST_TEST_PACKAGE: An Xcode test package upload.
    • XCTEST_UI_TEST_PACKAGE: An Xcode UI test package upload.
    • APPIUM_JAVA_JUNIT_TEST_SPEC: An Appium Java JUnit test spec upload.
    • APPIUM_JAVA_TESTNG_TEST_SPEC: An Appium Java TestNG test spec upload.
    • APPIUM_PYTHON_TEST_SPEC: An Appium Python test spec upload.
    • APPIUM_NODE_TEST_SPEC: An Appium Node.js test spec upload.
    • APPIUM_RUBY_TEST_SPEC: An Appium Ruby test spec upload.
    • APPIUM_WEB_JAVA_JUNIT_TEST_SPEC: An Appium Java JUnit test spec upload for a web app.
    • APPIUM_WEB_JAVA_TESTNG_TEST_SPEC: An Appium Java TestNG test spec upload for a web app.
    • APPIUM_WEB_PYTHON_TEST_SPEC: An Appium Python test spec upload for a web app.
    • APPIUM_WEB_NODE_TEST_SPEC: An Appium Node.js test spec upload for a web app.
    • APPIUM_WEB_RUBY_TEST_SPEC: An Appium Ruby test spec upload for a web app.
    • INSTRUMENTATION_TEST_SPEC: An instrumentation test spec upload.
    • XCTEST_UI_TEST_SPEC: An Xcode UI test spec upload.
  • nextToken (string) -- An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
Return type

dict

Returns

Response Syntax

{
    'uploads': [
        {
            'arn': 'string',
            'name': 'string',
            'created': datetime(2015, 1, 1),
            'type': 'ANDROID_APP'|'IOS_APP'|'WEB_APP'|'EXTERNAL_DATA'|'APPIUM_JAVA_JUNIT_TEST_PACKAGE'|'APPIUM_JAVA_TESTNG_TEST_PACKAGE'|'APPIUM_PYTHON_TEST_PACKAGE'|'APPIUM_NODE_TEST_PACKAGE'|'APPIUM_RUBY_TEST_PACKAGE'|'APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE'|'APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE'|'APPIUM_WEB_PYTHON_TEST_PACKAGE'|'APPIUM_WEB_NODE_TEST_PACKAGE'|'APPIUM_WEB_RUBY_TEST_PACKAGE'|'CALABASH_TEST_PACKAGE'|'INSTRUMENTATION_TEST_PACKAGE'|'UIAUTOMATION_TEST_PACKAGE'|'UIAUTOMATOR_TEST_PACKAGE'|'XCTEST_TEST_PACKAGE'|'XCTEST_UI_TEST_PACKAGE'|'APPIUM_JAVA_JUNIT_TEST_SPEC'|'APPIUM_JAVA_TESTNG_TEST_SPEC'|'APPIUM_PYTHON_TEST_SPEC'|'APPIUM_NODE_TEST_SPEC'|'APPIUM_RUBY_TEST_SPEC'|'APPIUM_WEB_JAVA_JUNIT_TEST_SPEC'|'APPIUM_WEB_JAVA_TESTNG_TEST_SPEC'|'APPIUM_WEB_PYTHON_TEST_SPEC'|'APPIUM_WEB_NODE_TEST_SPEC'|'APPIUM_WEB_RUBY_TEST_SPEC'|'INSTRUMENTATION_TEST_SPEC'|'XCTEST_UI_TEST_SPEC',
            'status': 'INITIALIZED'|'PROCESSING'|'SUCCEEDED'|'FAILED',
            'url': 'string',
            'metadata': 'string',
            'contentType': 'string',
            'message': 'string',
            'category': 'CURATED'|'PRIVATE'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the result of a list uploads request.

    • uploads (list) --

      Information about the uploads.

      • (dict) --

        An app or a set of one or more tests to upload or that have been uploaded.

        • arn (string) --

          The upload's ARN.

        • name (string) --

          The upload's file name.

        • created (datetime) --

          When the upload was created.

        • type (string) --

          The upload's type.

          Must be one of the following values:

          • ANDROID_APP: An Android upload.
          • IOS_APP: An iOS upload.
          • WEB_APP: A web application upload.
          • EXTERNAL_DATA: An external data upload.
          • APPIUM_JAVA_JUNIT_TEST_PACKAGE: An Appium Java JUnit test package upload.
          • APPIUM_JAVA_TESTNG_TEST_PACKAGE: An Appium Java TestNG test package upload.
          • APPIUM_PYTHON_TEST_PACKAGE: An Appium Python test package upload.
          • APPIUM_NODE_TEST_PACKAGE: An Appium Node.js test package upload.
          • APPIUM_RUBY_TEST_PACKAGE: An Appium Ruby test package upload.
          • APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE: An Appium Java JUnit test package upload for web apps.
          • APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE: An Appium Java TestNG test package upload for web apps.
          • APPIUM_WEB_PYTHON_TEST_PACKAGE: An Appium Python test package upload for web apps.
          • APPIUM_WEB_NODE_TEST_PACKAGE: An Appium Node.js test package upload for web apps.
          • APPIUM_WEB_RUBY_TEST_PACKAGE: An Appium Ruby test package upload for web apps.
          • CALABASH_TEST_PACKAGE: A Calabash test package upload.
          • INSTRUMENTATION_TEST_PACKAGE: An instrumentation upload.
          • UIAUTOMATION_TEST_PACKAGE: A uiautomation test package upload.
          • UIAUTOMATOR_TEST_PACKAGE: A uiautomator test package upload.
          • XCTEST_TEST_PACKAGE: An Xcode test package upload.
          • XCTEST_UI_TEST_PACKAGE: An Xcode UI test package upload.
          • APPIUM_JAVA_JUNIT_TEST_SPEC: An Appium Java JUnit test spec upload.
          • APPIUM_JAVA_TESTNG_TEST_SPEC: An Appium Java TestNG test spec upload.
          • APPIUM_PYTHON_TEST_SPEC: An Appium Python test spec upload.
          • APPIUM_NODE_TEST_SPEC: An Appium Node.js test spec upload.
          • APPIUM_RUBY_TEST_SPEC: An Appium Ruby test spec upload.
          • APPIUM_WEB_JAVA_JUNIT_TEST_SPEC: An Appium Java JUnit test spec upload for a web app.
          • APPIUM_WEB_JAVA_TESTNG_TEST_SPEC: An Appium Java TestNG test spec upload for a web app.
          • APPIUM_WEB_PYTHON_TEST_SPEC: An Appium Python test spec upload for a web app.
          • APPIUM_WEB_NODE_TEST_SPEC: An Appium Node.js test spec upload for a web app.
          • APPIUM_WEB_RUBY_TEST_SPEC: An Appium Ruby test spec upload for a web app.
          • INSTRUMENTATION_TEST_SPEC: An instrumentation test spec upload.
          • XCTEST_UI_TEST_SPEC: An Xcode UI test spec upload.
        • status (string) --

          The upload's status.

          Must be one of the following values:

          • FAILED: A failed status.
          • INITIALIZED: An initialized status.
          • PROCESSING: A processing status.
          • SUCCEEDED: A succeeded status.
        • url (string) --

          The pre-signed Amazon S3 URL that was used to store a file through a corresponding PUT request.

        • metadata (string) --

          The upload's metadata. For example, for Android, this contains information that is parsed from the manifest and is displayed in the AWS Device Farm console after the associated app is uploaded.

        • contentType (string) --

          The upload's content type (for example, "application/octet-stream").

        • message (string) --

          A message about the upload's result.

        • category (string) --

          The upload's category. Allowed values include:

          • CURATED: An upload managed by AWS Device Farm.
          • PRIVATE: An upload managed by the AWS Device Farm customer.
    • nextToken (string) --

      If the number of items that are returned is significantly large, this is an identifier that is also returned, which can be used in a subsequent call to this operation to return the next set of items in the list.

Examples

The following example returns information about uploads, given a specific Device Farm project.

response = client.list_uploads(
    # You can get the Amazon Resource Name (ARN) of the project by using the list-projects CLI command.
    arn='arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456',
    # A dynamically generated value, used for paginating results.
    nextToken='RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE',
)

print(response)

Expected Output:

{
    'uploads': [
    ],
    'ResponseMetadata': {
        '...': '...',
    },
}
list_vpce_configurations(**kwargs)

Returns information about all Amazon Virtual Private Cloud (VPC) endpoint configurations in the AWS account.

See also: AWS API Documentation

Request Syntax

response = client.list_vpce_configurations(
    maxResults=123,
    nextToken='string'
)
Parameters
  • maxResults (integer) -- An integer specifying the maximum number of items you want to return in the API response.
  • nextToken (string) -- An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
Return type

dict

Returns

Response Syntax

{
    'vpceConfigurations': [
        {
            'arn': 'string',
            'vpceConfigurationName': 'string',
            'vpceServiceName': 'string',
            'serviceDnsName': 'string',
            'vpceConfigurationDescription': 'string'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • vpceConfigurations (list) --

      An array of VPCEConfiguration objects containing information about your VPC endpoint configuration.

      • (dict) --

        Represents an Amazon Virtual Private Cloud (VPC) endpoint configuration.

        • arn (string) --

          The Amazon Resource Name (ARN) of the VPC endpoint configuration.

        • vpceConfigurationName (string) --

          The friendly name you give to your VPC endpoint configuration, to manage your configurations more easily.

        • vpceServiceName (string) --

          The name of the VPC endpoint service running inside your AWS account that you want Device Farm to test.

        • serviceDnsName (string) --

          The DNS name that maps to the private IP address of the service you want to access.

        • vpceConfigurationDescription (string) --

          An optional description, providing more details about your VPC endpoint configuration.

    • nextToken (string) --

      An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.

purchase_offering(**kwargs)

Immediately purchases offerings for an AWS account. Offerings renew with the latest total purchased quantity for an offering, unless the renewal was overridden. The API returns a NotEligible error if the user is not permitted to invoke the operation. Please contact aws-devicefarm-support@amazon.com if you believe that you should be able to invoke this operation.

See also: AWS API Documentation

Request Syntax

response = client.purchase_offering(
    offeringId='string',
    quantity=123,
    offeringPromotionId='string'
)
Parameters
  • offeringId (string) -- The ID of the offering.
  • quantity (integer) -- The number of device slots you wish to purchase in an offering request.
  • offeringPromotionId (string) -- The ID of the offering promotion to be applied to the purchase.
Return type

dict

Returns

Response Syntax

{
    'offeringTransaction': {
        'offeringStatus': {
            'type': 'PURCHASE'|'RENEW'|'SYSTEM',
            'offering': {
                'id': 'string',
                'description': 'string',
                'type': 'RECURRING',
                'platform': 'ANDROID'|'IOS',
                'recurringCharges': [
                    {
                        'cost': {
                            'amount': 123.0,
                            'currencyCode': 'USD'
                        },
                        'frequency': 'MONTHLY'
                    },
                ]
            },
            'quantity': 123,
            'effectiveOn': datetime(2015, 1, 1)
        },
        'transactionId': 'string',
        'offeringPromotionId': 'string',
        'createdOn': datetime(2015, 1, 1),
        'cost': {
            'amount': 123.0,
            'currencyCode': 'USD'
        }
    }
}

Response Structure

  • (dict) --

    The result of the purchase offering (e.g., success or failure).

    • offeringTransaction (dict) --

      Represents the offering transaction for the purchase result.

      • offeringStatus (dict) --

        The status of an offering transaction.

        • type (string) --

          The type specified for the offering status.

        • offering (dict) --

          Represents the metadata of an offering status.

          • id (string) --

            The ID that corresponds to a device offering.

          • description (string) --

            A string describing the offering.

          • type (string) --

            The type of offering (e.g., "RECURRING") for a device.

          • platform (string) --

            The platform of the device (e.g., ANDROID or IOS).

          • recurringCharges (list) --

            Specifies whether there are recurring charges for the offering.

            • (dict) --

              Specifies whether charges for devices will be recurring.

              • cost (dict) --

                The cost of the recurring charge.

                • amount (float) --

                  The numerical amount of an offering or transaction.

                • currencyCode (string) --

                  The currency code of a monetary amount. For example, USD means "U.S. dollars."

              • frequency (string) --

                The frequency in which charges will recur.

        • quantity (integer) --

          The number of available devices in the offering.

        • effectiveOn (datetime) --

          The date on which the offering is effective.

      • transactionId (string) --

        The transaction ID of the offering transaction.

      • offeringPromotionId (string) --

        The ID that corresponds to a device offering promotion.

      • createdOn (datetime) --

        The date on which an offering transaction was created.

      • cost (dict) --

        The cost of an offering transaction.

        • amount (float) --

          The numerical amount of an offering or transaction.

        • currencyCode (string) --

          The currency code of a monetary amount. For example, USD means "U.S. dollars."

Examples

The following example purchases a specific device slot offering.

response = client.purchase_offering(
    # You can get the offering ID by using the list-offerings CLI command.
    offeringId='D68B3C05-1BA6-4360-BC69-12345EXAMPLE',
    quantity=1,
)

print(response)

Expected Output:

{
    'offeringTransaction': {
        'cost': {
            'amount': 8.07,
            'currencyCode': 'USD',
        },
        'createdOn': datetime(2016, 8, 31, 12, 59, 0, 2, 244, 0),
        'offeringStatus': {
            'type': 'PURCHASE',
            'effectiveOn': datetime(2016, 8, 31, 12, 59, 0, 2, 244, 0),
            'offering': {
                'type': 'RECURRING',
                'description': 'Android Remote Access Unmetered Device Slot',
                'id': 'D68B3C05-1BA6-4360-BC69-12345EXAMPLE',
                'platform': 'ANDROID',
            },
            'quantity': 1,
        },
        'transactionId': 'd30614ed-1b03-404c-9893-12345EXAMPLE',
    },
    'ResponseMetadata': {
        '...': '...',
    },
}
renew_offering(**kwargs)

Explicitly sets the quantity of devices to renew for an offering, starting from the effectiveDate of the next period. The API returns a NotEligible error if the user is not permitted to invoke the operation. Please contact aws-devicefarm-support@amazon.com if you believe that you should be able to invoke this operation.

See also: AWS API Documentation

Request Syntax

response = client.renew_offering(
    offeringId='string',
    quantity=123
)
Parameters
  • offeringId (string) -- The ID of a request to renew an offering.
  • quantity (integer) -- The quantity requested in an offering renewal.
Return type

dict

Returns

Response Syntax

{
    'offeringTransaction': {
        'offeringStatus': {
            'type': 'PURCHASE'|'RENEW'|'SYSTEM',
            'offering': {
                'id': 'string',
                'description': 'string',
                'type': 'RECURRING',
                'platform': 'ANDROID'|'IOS',
                'recurringCharges': [
                    {
                        'cost': {
                            'amount': 123.0,
                            'currencyCode': 'USD'
                        },
                        'frequency': 'MONTHLY'
                    },
                ]
            },
            'quantity': 123,
            'effectiveOn': datetime(2015, 1, 1)
        },
        'transactionId': 'string',
        'offeringPromotionId': 'string',
        'createdOn': datetime(2015, 1, 1),
        'cost': {
            'amount': 123.0,
            'currencyCode': 'USD'
        }
    }
}

Response Structure

  • (dict) --

    The result of a renewal offering.

    • offeringTransaction (dict) --

      Represents the status of the offering transaction for the renewal.

      • offeringStatus (dict) --

        The status of an offering transaction.

        • type (string) --

          The type specified for the offering status.

        • offering (dict) --

          Represents the metadata of an offering status.

          • id (string) --

            The ID that corresponds to a device offering.

          • description (string) --

            A string describing the offering.

          • type (string) --

            The type of offering (e.g., "RECURRING") for a device.

          • platform (string) --

            The platform of the device (e.g., ANDROID or IOS).

          • recurringCharges (list) --

            Specifies whether there are recurring charges for the offering.

            • (dict) --

              Specifies whether charges for devices will be recurring.

              • cost (dict) --

                The cost of the recurring charge.

                • amount (float) --

                  The numerical amount of an offering or transaction.

                • currencyCode (string) --

                  The currency code of a monetary amount. For example, USD means "U.S. dollars."

              • frequency (string) --

                The frequency in which charges will recur.

        • quantity (integer) --

          The number of available devices in the offering.

        • effectiveOn (datetime) --

          The date on which the offering is effective.

      • transactionId (string) --

        The transaction ID of the offering transaction.

      • offeringPromotionId (string) --

        The ID that corresponds to a device offering promotion.

      • createdOn (datetime) --

        The date on which an offering transaction was created.

      • cost (dict) --

        The cost of an offering transaction.

        • amount (float) --

          The numerical amount of an offering or transaction.

        • currencyCode (string) --

          The currency code of a monetary amount. For example, USD means "U.S. dollars."

Examples

The following example renews a specific device slot offering.

response = client.renew_offering(
    # You can get the offering ID by using the list-offerings CLI command.
    offeringId='D68B3C05-1BA6-4360-BC69-12345EXAMPLE',
    quantity=1,
)

print(response)

Expected Output:

{
    'offeringTransaction': {
        'cost': {
            'amount': 250,
            'currencyCode': 'USD',
        },
        'createdOn': datetime(2016, 8, 31, 13, 8, 0, 2, 244, 0),
        'offeringStatus': {
            'type': 'RENEW',
            'effectiveOn': datetime(2016, 9, 1, 0, 0, 0, 3, 245, 0),
            'offering': {
                'type': 'RECURRING',
                'description': 'Android Remote Access Unmetered Device Slot',
                'id': 'D68B3C05-1BA6-4360-BC69-12345EXAMPLE',
                'platform': 'ANDROID',
            },
            'quantity': 1,
        },
        'transactionId': 'e90f1405-8c35-4561-be43-12345EXAMPLE',
    },
    'ResponseMetadata': {
        '...': '...',
    },
}
schedule_run(**kwargs)

Schedules a run.

See also: AWS API Documentation

Request Syntax

response = client.schedule_run(
    projectArn='string',
    appArn='string',
    devicePoolArn='string',
    deviceSelectionConfiguration={
        'filters': [
            {
                'attribute': 'ARN'|'PLATFORM'|'OS_VERSION'|'MODEL'|'AVAILABILITY'|'FORM_FACTOR'|'MANUFACTURER'|'REMOTE_ACCESS_ENABLED'|'REMOTE_DEBUG_ENABLED'|'INSTANCE_ARN'|'INSTANCE_LABELS'|'FLEET_TYPE',
                'operator': 'EQUALS'|'LESS_THAN'|'LESS_THAN_OR_EQUALS'|'GREATER_THAN'|'GREATER_THAN_OR_EQUALS'|'IN'|'NOT_IN'|'CONTAINS',
                'values': [
                    'string',
                ]
            },
        ],
        'maxDevices': 123
    },
    name='string',
    test={
        'type': 'BUILTIN_FUZZ'|'BUILTIN_EXPLORER'|'WEB_PERFORMANCE_PROFILE'|'APPIUM_JAVA_JUNIT'|'APPIUM_JAVA_TESTNG'|'APPIUM_PYTHON'|'APPIUM_NODE'|'APPIUM_RUBY'|'APPIUM_WEB_JAVA_JUNIT'|'APPIUM_WEB_JAVA_TESTNG'|'APPIUM_WEB_PYTHON'|'APPIUM_WEB_NODE'|'APPIUM_WEB_RUBY'|'CALABASH'|'INSTRUMENTATION'|'UIAUTOMATION'|'UIAUTOMATOR'|'XCTEST'|'XCTEST_UI'|'REMOTE_ACCESS_RECORD'|'REMOTE_ACCESS_REPLAY',
        'testPackageArn': 'string',
        'testSpecArn': 'string',
        'filter': 'string',
        'parameters': {
            'string': 'string'
        }
    },
    configuration={
        'extraDataPackageArn': 'string',
        'networkProfileArn': 'string',
        'locale': 'string',
        'location': {
            'latitude': 123.0,
            'longitude': 123.0
        },
        'vpceConfigurationArns': [
            'string',
        ],
        'customerArtifactPaths': {
            'iosPaths': [
                'string',
            ],
            'androidPaths': [
                'string',
            ],
            'deviceHostPaths': [
                'string',
            ]
        },
        'radios': {
            'wifi': True|False,
            'bluetooth': True|False,
            'nfc': True|False,
            'gps': True|False
        },
        'auxiliaryApps': [
            'string',
        ],
        'billingMethod': 'METERED'|'UNMETERED'
    },
    executionConfiguration={
        'jobTimeoutMinutes': 123,
        'accountsCleanup': True|False,
        'appPackagesCleanup': True|False,
        'videoCapture': True|False,
        'skipAppResign': True|False
    }
)
Parameters
  • projectArn (string) --

    [REQUIRED]

    The ARN of the project for the run to be scheduled.

  • appArn (string) -- The ARN of the app to schedule a run.
  • devicePoolArn (string) -- The ARN of the device pool for the run to be scheduled.
  • deviceSelectionConfiguration (dict) --

    The filter criteria used to dynamically select a set of devices for a test run, as well as the maximum number of devices to be included in the run.

    Either ** devicePoolArn ** or ** deviceSelectionConfiguration ** is required in a request.

    • filters (list) -- [REQUIRED]

      Used to dynamically select a set of devices for a test run. A filter is made up of an attribute, an operator, and one or more values.

      • Attribute The aspect of a device such as platform or model used as the selection criteria in a device filter. Allowed values include:
        • ARN: The Amazon Resource Name (ARN) of the device. For example, "arn:aws:devicefarm:us-west-2::device:12345Example".
        • PLATFORM: The device platform. Valid values are "ANDROID" or "IOS".
        • OS_VERSION: The operating system version. For example, "10.3.2".
        • MODEL: The device model. For example, "iPad 5th Gen".
        • AVAILABILITY: The current availability of the device. Valid values are "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".
        • FORM_FACTOR: The device form factor. Valid values are "PHONE" or "TABLET".
        • MANUFACTURER: The device manufacturer. For example, "Apple".
        • REMOTE_ACCESS_ENABLED: Whether the device is enabled for remote access. Valid values are "TRUE" or "FALSE".
        • REMOTE_DEBUG_ENABLED: Whether the device is enabled for remote debugging. Valid values are "TRUE" or "FALSE". This filter will be ignored, as remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .
        • INSTANCE_ARN: The Amazon Resource Name (ARN) of the device instance.
        • INSTANCE_LABELS: The label of the device instance.
        • FLEET_TYPE: The fleet type. Valid values are "PUBLIC" or "PRIVATE".
      • Operator The filter operator.
        • The EQUALS operator is available for every attribute except INSTANCE_LABELS.
        • The CONTAINS operator is available for the INSTANCE_LABELS and MODEL attributes.
        • The IN and NOT_IN operators are available for the ARN, OS_VERSION, MODEL, MANUFACTURER, and INSTANCE_ARN attributes.
        • The LESS_THAN, GREATER_THAN, LESS_THAN_OR_EQUALS, and GREATER_THAN_OR_EQUALS operators are also available for the OS_VERSION attribute.
      • Values An array of one or more filter values. Operator Values
        • The IN and NOT_IN operators can take a values array that has more than one element.
        • The other operators require an array with a single element.
      Attribute Values
      • The PLATFORM attribute can be set to "ANDROID" or "IOS".
      • The AVAILABILITY attribute can be set to "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".
      • The FORM_FACTOR attribute can be set to "PHONE" or "TABLET".
      • The FLEET_TYPE attribute can be set to "PUBLIC" or "PRIVATE".
      • (dict) --

        Represents a device filter used to select a set of devices to be included in a test run. This data structure is passed in as the deviceSelectionConfiguration parameter to ScheduleRun. For an example of the JSON request syntax, see ScheduleRun .

        It is also passed in as the filters parameter to ListDevices. For an example of the JSON request syntax, see ListDevices .

        • attribute (string) --

          The aspect of a device such as platform or model used as the selection criteria in a device filter.

          The supported operators for each attribute are provided in the following list.

          ARN

          The Amazon Resource Name (ARN) of the device. For example, "arn:aws:devicefarm:us-west-2::device:12345Example".

          Supported operators : EQUALS , IN , NOT_IN
          PLATFORM

          The device platform. Valid values are "ANDROID" or "IOS".

          Supported operators : EQUALS
          OS_VERSION

          The operating system version. For example, "10.3.2".

          Supported operators : EQUALS , GREATER_THAN , GREATER_THAN_OR_EQUALS , IN , LESS_THAN , LESS_THAN_OR_EQUALS , NOT_IN
          MODEL

          The device model. For example, "iPad 5th Gen".

          Supported operators : CONTAINS , EQUALS , IN , NOT_IN
          AVAILABILITY

          The current availability of the device. Valid values are "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".

          Supported operators : EQUALS
          FORM_FACTOR

          The device form factor. Valid values are "PHONE" or "TABLET".

          Supported operators : EQUALS
          MANUFACTURER

          The device manufacturer. For example, "Apple".

          Supported operators : EQUALS , IN , NOT_IN
          REMOTE_ACCESS_ENABLED

          Whether the device is enabled for remote access. Valid values are "TRUE" or "FALSE".

          Supported operators : EQUALS
          REMOTE_DEBUG_ENABLED

          Ignored. Whether the device is enabled for remote debugging. Valid values are "TRUE" or "FALSE".

          Supported operators : EQUALS

          This filter will be ignored, as remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

          INSTANCE_ARN

          The Amazon Resource Name (ARN) of the device instance.

          Supported operators : EQUALS , IN , NOT_IN
          INSTANCE_LABELS

          The label of the device instance.

          Supported operators : CONTAINS
          FLEET_TYPE

          The fleet type. Valid values are "PUBLIC" or "PRIVATE".

          Supported operators : EQUALS
        • operator (string) --

          Specifies how Device Farm compares the filter's attribute to the value. For the operators that are supported by each attribute, see the attribute descriptions.

        • values (list) --

          An array of one or more filter values used in a device filter.

          Operator Values
          • The IN and NOT_IN operators can take a values array that has more than one element.
          • The other operators require an array with a single element.
          Attribute Values
          • The PLATFORM attribute can be set to "ANDROID" or "IOS".
          • The AVAILABILITY attribute can be set to "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".
          • The FORM_FACTOR attribute can be set to "PHONE" or "TABLET".
          • The FLEET_TYPE attribute can be set to "PUBLIC" or "PRIVATE".
          • (string) --
    • maxDevices (integer) -- [REQUIRED]

      The maximum number of devices to be included in a test run.

  • name (string) -- The name for the run to be scheduled.
  • test (dict) --

    [REQUIRED]

    Information about the test for the run to be scheduled.

    • type (string) -- [REQUIRED]

      The test's type.

      Must be one of the following values:

      • BUILTIN_FUZZ: The built-in fuzz type.
      • BUILTIN_EXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.
      • APPIUM_JAVA_JUNIT: The Appium Java JUnit type.
      • APPIUM_JAVA_TESTNG: The Appium Java TestNG type.
      • APPIUM_PYTHON: The Appium Python type.
      • APPIUM_NODE: The Appium Node.js type.
      • APPIUM_RUBY: The Appium Ruby type.
      • APPIUM_WEB_JAVA_JUNIT: The Appium Java JUnit type for web apps.
      • APPIUM_WEB_JAVA_TESTNG: The Appium Java TestNG type for web apps.
      • APPIUM_WEB_PYTHON: The Appium Python type for web apps.
      • APPIUM_WEB_NODE: The Appium Node.js type for web apps.
      • APPIUM_WEB_RUBY: The Appium Ruby type for web apps.
      • CALABASH: The Calabash type.
      • INSTRUMENTATION: The Instrumentation type.
      • UIAUTOMATION: The uiautomation type.
      • UIAUTOMATOR: The uiautomator type.
      • XCTEST: The Xcode test type.
      • XCTEST_UI: The Xcode UI test type.
    • testPackageArn (string) --

      The ARN of the uploaded test that will be run.

    • testSpecArn (string) --

      The ARN of the YAML-formatted test specification.

    • filter (string) --

      The test's filter.

    • parameters (dict) --

      The test's parameters, such as test framework parameters and fixture settings. Parameters are represented by name-value pairs of strings.

      For all tests:

      • app_performance_monitoring: Performance monitoring is enabled by default. Set this parameter to "false" to disable it.

      For Calabash tests:

      • profile: A cucumber profile, for example, "my_profile_name".
      • tags: You can limit execution to features or scenarios that have (or don't have) certain tags, for example, "@smoke" or "@smoke,~@wip".

      For Appium tests (all types):

      • appium_version: The Appium version. Currently supported values are "1.6.5" (and higher), "latest", and "default".
        • “latest” will run the latest Appium version supported by Device Farm (1.9.1).
        • For “default”, Device Farm will choose a compatible version of Appium for the device. The current behavior is to run 1.7.2 on Android devices and iOS 9 and earlier, 1.7.2 for iOS 10 and later.
        • This behavior is subject to change.

      For Fuzz tests (Android only):

      • event_count: The number of events, between 1 and 10000, that the UI fuzz test should perform.
      • throttle: The time, in ms, between 0 and 1000, that the UI fuzz test should wait between events.
      • seed: A seed to use for randomizing the UI fuzz test. Using the same seed value between tests ensures identical event sequences.

      For Explorer tests:

      • username: A username to use if the Explorer encounters a login form. If not supplied, no username will be inserted.
      • password: A password to use if the Explorer encounters a login form. If not supplied, no password will be inserted.

      For Instrumentation:

      • filter: A test filter string. Examples:
        • Running a single test case: "com.android.abc.Test1"
        • Running a single test: "com.android.abc.Test1#smoke"
        • Running multiple tests: "com.android.abc.Test1,com.android.abc.Test2"

      For XCTest and XCTestUI:

      • filter: A test filter string. Examples:
        • Running a single test class: "LoginTests"
        • Running a multiple test classes: "LoginTests,SmokeTests"
        • Running a single test: "LoginTests/testValid"
        • Running multiple tests: "LoginTests/testValid,LoginTests/testInvalid"

      For UIAutomator:

      • filter: A test filter string. Examples:
        • Running a single test case: "com.android.abc.Test1"
        • Running a single test: "com.android.abc.Test1#smoke"
        • Running multiple tests: "com.android.abc.Test1,com.android.abc.Test2"
      • (string) --
        • (string) --
  • configuration (dict) --

    Information about the settings for the run to be scheduled.

    • extraDataPackageArn (string) --

      The ARN of the extra data for the run. The extra data is a .zip file that AWS Device Farm will extract to external data for Android or the app's sandbox for iOS.

    • networkProfileArn (string) --

      Reserved for internal use.

    • locale (string) --

      Information about the locale that is used for the run.

    • location (dict) --

      Information about the location that is used for the run.

      • latitude (float) -- [REQUIRED]

        The latitude.

      • longitude (float) -- [REQUIRED]

        The longitude.

    • vpceConfigurationArns (list) --

      An array of Amazon Resource Names (ARNs) for your VPC endpoint configurations.

      • (string) --
    • customerArtifactPaths (dict) --

      Input CustomerArtifactPaths object for the scheduled run configuration.

      • iosPaths (list) --

        Comma-separated list of paths on the iOS device where the artifacts generated by the customer's tests will be pulled from.

        • (string) --
      • androidPaths (list) --

        Comma-separated list of paths on the Android device where the artifacts generated by the customer's tests will be pulled from.

        • (string) --
      • deviceHostPaths (list) --

        Comma-separated list of paths in the test execution environment where the artifacts generated by the customer's tests will be pulled from.

        • (string) --
    • radios (dict) --

      Information about the radio states for the run.

      • wifi (boolean) --

        True if Wi-Fi is enabled at the beginning of the test; otherwise, false.

      • bluetooth (boolean) --

        True if Bluetooth is enabled at the beginning of the test; otherwise, false.

      • nfc (boolean) --

        True if NFC is enabled at the beginning of the test; otherwise, false.

      • gps (boolean) --

        True if GPS is enabled at the beginning of the test; otherwise, false.

    • auxiliaryApps (list) --

      A list of Upload ARNs for app packages that will be installed alongside your app.

      • (string) --
    • billingMethod (string) --

      Specifies the billing method for a test run: metered or unmetered . If the parameter is not specified, the default value is metered .

  • executionConfiguration (dict) --

    Specifies configuration information about a test run, such as the execution timeout (in minutes).

    • jobTimeoutMinutes (integer) --

      The number of minutes a test run will execute before it times out.

    • accountsCleanup (boolean) --

      True if account cleanup is enabled at the beginning of the test; otherwise, false.

    • appPackagesCleanup (boolean) --

      True if app package cleanup is enabled at the beginning of the test; otherwise, false.

    • videoCapture (boolean) --

      Set to true to enable video capture; otherwise, set to false. The default is true.

    • skipAppResign (boolean) --

      When set to true , for private devices, Device Farm will not sign your app again. For public devices, Device Farm always signs your apps again and this parameter has no effect.

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

Return type

dict

Returns

Response Syntax

{
    'run': {
        'arn': 'string',
        'name': 'string',
        'type': 'BUILTIN_FUZZ'|'BUILTIN_EXPLORER'|'WEB_PERFORMANCE_PROFILE'|'APPIUM_JAVA_JUNIT'|'APPIUM_JAVA_TESTNG'|'APPIUM_PYTHON'|'APPIUM_NODE'|'APPIUM_RUBY'|'APPIUM_WEB_JAVA_JUNIT'|'APPIUM_WEB_JAVA_TESTNG'|'APPIUM_WEB_PYTHON'|'APPIUM_WEB_NODE'|'APPIUM_WEB_RUBY'|'CALABASH'|'INSTRUMENTATION'|'UIAUTOMATION'|'UIAUTOMATOR'|'XCTEST'|'XCTEST_UI'|'REMOTE_ACCESS_RECORD'|'REMOTE_ACCESS_REPLAY',
        'platform': 'ANDROID'|'IOS',
        'created': datetime(2015, 1, 1),
        'status': 'PENDING'|'PENDING_CONCURRENCY'|'PENDING_DEVICE'|'PROCESSING'|'SCHEDULING'|'PREPARING'|'RUNNING'|'COMPLETED'|'STOPPING',
        'result': 'PENDING'|'PASSED'|'WARNED'|'FAILED'|'SKIPPED'|'ERRORED'|'STOPPED',
        'started': datetime(2015, 1, 1),
        'stopped': datetime(2015, 1, 1),
        'counters': {
            'total': 123,
            'passed': 123,
            'failed': 123,
            'warned': 123,
            'errored': 123,
            'stopped': 123,
            'skipped': 123
        },
        'message': 'string',
        'totalJobs': 123,
        'completedJobs': 123,
        'billingMethod': 'METERED'|'UNMETERED',
        'deviceMinutes': {
            'total': 123.0,
            'metered': 123.0,
            'unmetered': 123.0
        },
        'networkProfile': {
            'arn': 'string',
            'name': 'string',
            'description': 'string',
            'type': 'CURATED'|'PRIVATE',
            'uplinkBandwidthBits': 123,
            'downlinkBandwidthBits': 123,
            'uplinkDelayMs': 123,
            'downlinkDelayMs': 123,
            'uplinkJitterMs': 123,
            'downlinkJitterMs': 123,
            'uplinkLossPercent': 123,
            'downlinkLossPercent': 123
        },
        'parsingResultUrl': 'string',
        'resultCode': 'PARSING_FAILED'|'VPC_ENDPOINT_SETUP_FAILED',
        'seed': 123,
        'appUpload': 'string',
        'eventCount': 123,
        'jobTimeoutMinutes': 123,
        'devicePoolArn': 'string',
        'locale': 'string',
        'radios': {
            'wifi': True|False,
            'bluetooth': True|False,
            'nfc': True|False,
            'gps': True|False
        },
        'location': {
            'latitude': 123.0,
            'longitude': 123.0
        },
        'customerArtifactPaths': {
            'iosPaths': [
                'string',
            ],
            'androidPaths': [
                'string',
            ],
            'deviceHostPaths': [
                'string',
            ]
        },
        'webUrl': 'string',
        'skipAppResign': True|False,
        'testSpecArn': 'string',
        'deviceSelectionResult': {
            'filters': [
                {
                    'attribute': 'ARN'|'PLATFORM'|'OS_VERSION'|'MODEL'|'AVAILABILITY'|'FORM_FACTOR'|'MANUFACTURER'|'REMOTE_ACCESS_ENABLED'|'REMOTE_DEBUG_ENABLED'|'INSTANCE_ARN'|'INSTANCE_LABELS'|'FLEET_TYPE',
                    'operator': 'EQUALS'|'LESS_THAN'|'LESS_THAN_OR_EQUALS'|'GREATER_THAN'|'GREATER_THAN_OR_EQUALS'|'IN'|'NOT_IN'|'CONTAINS',
                    'values': [
                        'string',
                    ]
                },
            ],
            'matchedDevicesCount': 123,
            'maxDevices': 123
        }
    }
}

Response Structure

  • (dict) --

    Represents the result of a schedule run request.

    • run (dict) --

      Information about the scheduled run.

      • arn (string) --

        The run's ARN.

      • name (string) --

        The run's name.

      • type (string) --

        The run's type.

        Must be one of the following values:

        • BUILTIN_FUZZ: The built-in fuzz type.
        • BUILTIN_EXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.
        • APPIUM_JAVA_JUNIT: The Appium Java JUnit type.
        • APPIUM_JAVA_TESTNG: The Appium Java TestNG type.
        • APPIUM_PYTHON: The Appium Python type.
        • APPIUM_NODE: The Appium Node.js type.
        • APPIUM_RUBY: The Appium Ruby type.
        • APPIUM_WEB_JAVA_JUNIT: The Appium Java JUnit type for web apps.
        • APPIUM_WEB_JAVA_TESTNG: The Appium Java TestNG type for web apps.
        • APPIUM_WEB_PYTHON: The Appium Python type for web apps.
        • APPIUM_WEB_NODE: The Appium Node.js type for web apps.
        • APPIUM_WEB_RUBY: The Appium Ruby type for web apps.
        • CALABASH: The Calabash type.
        • INSTRUMENTATION: The Instrumentation type.
        • UIAUTOMATION: The uiautomation type.
        • UIAUTOMATOR: The uiautomator type.
        • XCTEST: The Xcode test type.
        • XCTEST_UI: The Xcode UI test type.
      • platform (string) --

        The run's platform.

        Allowed values include:

        • ANDROID: The Android platform.
        • IOS: The iOS platform.
      • created (datetime) --

        When the run was created.

      • status (string) --

        The run's status.

        Allowed values include:

        • PENDING: A pending status.
        • PENDING_CONCURRENCY: A pending concurrency status.
        • PENDING_DEVICE: A pending device status.
        • PROCESSING: A processing status.
        • SCHEDULING: A scheduling status.
        • PREPARING: A preparing status.
        • RUNNING: A running status.
        • COMPLETED: A completed status.
        • STOPPING: A stopping status.
      • result (string) --

        The run's result.

        Allowed values include:

        • PENDING: A pending condition.
        • PASSED: A passing condition.
        • WARNED: A warning condition.
        • FAILED: A failed condition.
        • SKIPPED: A skipped condition.
        • ERRORED: An error condition.
        • STOPPED: A stopped condition.
      • started (datetime) --

        The run's start time.

      • stopped (datetime) --

        The run's stop time.

      • counters (dict) --

        The run's result counters.

        • total (integer) --

          The total number of entities.

        • passed (integer) --

          The number of passed entities.

        • failed (integer) --

          The number of failed entities.

        • warned (integer) --

          The number of warned entities.

        • errored (integer) --

          The number of errored entities.

        • stopped (integer) --

          The number of stopped entities.

        • skipped (integer) --

          The number of skipped entities.

      • message (string) --

        A message about the run's result.

      • totalJobs (integer) --

        The total number of jobs for the run.

      • completedJobs (integer) --

        The total number of completed jobs.

      • billingMethod (string) --

        Specifies the billing method for a test run: metered or unmetered . If the parameter is not specified, the default value is metered .

      • deviceMinutes (dict) --

        Represents the total (metered or unmetered) minutes used by the test run.

        • total (float) --

          When specified, represents the total minutes used by the resource to run tests.

        • metered (float) --

          When specified, represents only the sum of metered minutes used by the resource to run tests.

        • unmetered (float) --

          When specified, represents only the sum of unmetered minutes used by the resource to run tests.

      • networkProfile (dict) --

        The network profile being used for a test run.

        • arn (string) --

          The Amazon Resource Name (ARN) of the network profile.

        • name (string) --

          The name of the network profile.

        • description (string) --

          The description of the network profile.

        • type (string) --

          The type of network profile. Valid values are listed below.

        • uplinkBandwidthBits (integer) --

          The data throughput rate in bits per second, as an integer from 0 to 104857600.

        • downlinkBandwidthBits (integer) --

          The data throughput rate in bits per second, as an integer from 0 to 104857600.

        • uplinkDelayMs (integer) --

          Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.

        • downlinkDelayMs (integer) --

          Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.

        • uplinkJitterMs (integer) --

          Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.

        • downlinkJitterMs (integer) --

          Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.

        • uplinkLossPercent (integer) --

          Proportion of transmitted packets that fail to arrive from 0 to 100 percent.

        • downlinkLossPercent (integer) --

          Proportion of received packets that fail to arrive from 0 to 100 percent.

      • parsingResultUrl (string) --

        Read-only URL for an object in S3 bucket where you can get the parsing results of the test package. If the test package doesn't parse, the reason why it doesn't parse appears in the file that this URL points to.

      • resultCode (string) --

        Supporting field for the result field. Set only if result is SKIPPED . PARSING_FAILED if the result is skipped because of test package parsing failure.

      • seed (integer) --

        For fuzz tests, this is a seed to use for randomizing the UI fuzz test. Using the same seed value between tests ensures identical event sequences.

      • appUpload (string) --

        An app to upload or that has been uploaded.

      • eventCount (integer) --

        For fuzz tests, this is the number of events, between 1 and 10000, that the UI fuzz test should perform.

      • jobTimeoutMinutes (integer) --

        The number of minutes the job will execute before it times out.

      • devicePoolArn (string) --

        The ARN of the device pool for the run.

      • locale (string) --

        Information about the locale that is used for the run.

      • radios (dict) --

        Information about the radio states for the run.

        • wifi (boolean) --

          True if Wi-Fi is enabled at the beginning of the test; otherwise, false.

        • bluetooth (boolean) --

          True if Bluetooth is enabled at the beginning of the test; otherwise, false.

        • nfc (boolean) --

          True if NFC is enabled at the beginning of the test; otherwise, false.

        • gps (boolean) --

          True if GPS is enabled at the beginning of the test; otherwise, false.

      • location (dict) --

        Information about the location that is used for the run.

        • latitude (float) --

          The latitude.

        • longitude (float) --

          The longitude.

      • customerArtifactPaths (dict) --

        Output CustomerArtifactPaths object for the test run.

        • iosPaths (list) --

          Comma-separated list of paths on the iOS device where the artifacts generated by the customer's tests will be pulled from.

          • (string) --
        • androidPaths (list) --

          Comma-separated list of paths on the Android device where the artifacts generated by the customer's tests will be pulled from.

          • (string) --
        • deviceHostPaths (list) --

          Comma-separated list of paths in the test execution environment where the artifacts generated by the customer's tests will be pulled from.

          • (string) --
      • webUrl (string) --

        The Device Farm console URL for the recording of the run.

      • skipAppResign (boolean) --

        When set to true , for private devices, Device Farm will not sign your app again. For public devices, Device Farm always signs your apps again and this parameter has no effect.

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

      • testSpecArn (string) --

        The ARN of the YAML-formatted test specification for the run.

      • deviceSelectionResult (dict) --

        The results of a device filter used to select the devices for a test run.

        • filters (list) --

          The filters in a device selection result.

          • (dict) --

            Represents a device filter used to select a set of devices to be included in a test run. This data structure is passed in as the deviceSelectionConfiguration parameter to ScheduleRun. For an example of the JSON request syntax, see ScheduleRun .

            It is also passed in as the filters parameter to ListDevices. For an example of the JSON request syntax, see ListDevices .

            • attribute (string) --

              The aspect of a device such as platform or model used as the selection criteria in a device filter.

              The supported operators for each attribute are provided in the following list.

              ARN

              The Amazon Resource Name (ARN) of the device. For example, "arn:aws:devicefarm:us-west-2::device:12345Example".

              Supported operators : EQUALS , IN , NOT_IN

              PLATFORM

              The device platform. Valid values are "ANDROID" or "IOS".

              Supported operators : EQUALS

              OS_VERSION

              The operating system version. For example, "10.3.2".

              Supported operators : EQUALS , GREATER_THAN , GREATER_THAN_OR_EQUALS , IN , LESS_THAN , LESS_THAN_OR_EQUALS , NOT_IN

              MODEL

              The device model. For example, "iPad 5th Gen".

              Supported operators : CONTAINS , EQUALS , IN , NOT_IN

              AVAILABILITY

              The current availability of the device. Valid values are "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".

              Supported operators : EQUALS

              FORM_FACTOR

              The device form factor. Valid values are "PHONE" or "TABLET".

              Supported operators : EQUALS

              MANUFACTURER

              The device manufacturer. For example, "Apple".

              Supported operators : EQUALS , IN , NOT_IN

              REMOTE_ACCESS_ENABLED

              Whether the device is enabled for remote access. Valid values are "TRUE" or "FALSE".

              Supported operators : EQUALS

              REMOTE_DEBUG_ENABLED

              Ignored. Whether the device is enabled for remote debugging. Valid values are "TRUE" or "FALSE".

              Supported operators : EQUALS

              This filter will be ignored, as remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

              INSTANCE_ARN

              The Amazon Resource Name (ARN) of the device instance.

              Supported operators : EQUALS , IN , NOT_IN

              INSTANCE_LABELS

              The label of the device instance.

              Supported operators : CONTAINS

              FLEET_TYPE

              The fleet type. Valid values are "PUBLIC" or "PRIVATE".

              Supported operators : EQUALS

            • operator (string) --

              Specifies how Device Farm compares the filter's attribute to the value. For the operators that are supported by each attribute, see the attribute descriptions.

            • values (list) --

              An array of one or more filter values used in a device filter.

              Operator Values

              • The IN and NOT_IN operators can take a values array that has more than one element.
              • The other operators require an array with a single element.

              Attribute Values

              • The PLATFORM attribute can be set to "ANDROID" or "IOS".
              • The AVAILABILITY attribute can be set to "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".
              • The FORM_FACTOR attribute can be set to "PHONE" or "TABLET".
              • The FLEET_TYPE attribute can be set to "PUBLIC" or "PRIVATE".
              • (string) --
        • matchedDevicesCount (integer) --

          The number of devices that matched the device filter selection criteria.

        • maxDevices (integer) --

          The maximum number of devices to be selected by a device filter and included in a test run.

Examples

The following example schedules a test run named MyRun.

response = client.schedule_run(
    name='MyRun',
    # You can get the Amazon Resource Name (ARN) of the device pool by using the list-pools CLI command.
    devicePoolArn='arn:aws:devicefarm:us-west-2:123456789101:pool:EXAMPLE-GUID-123-456',
    # You can get the Amazon Resource Name (ARN) of the project by using the list-projects CLI command.
    projectArn='arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456',
    test={
        'type': 'APPIUM_JAVA_JUNIT',
        'testPackageArn': 'arn:aws:devicefarm:us-west-2:123456789101:test:EXAMPLE-GUID-123-456',
    },
)

print(response)

Expected Output:

{
    'run': {
    },
    'ResponseMetadata': {
        '...': '...',
    },
}
stop_job(**kwargs)

Initiates a stop request for the current job. AWS Device Farm will immediately stop the job on the device where tests have not started executing, and you will not be billed for this device. On the device where tests have started executing, Setup Suite and Teardown Suite tests will run to completion before stopping execution on the device. You will be billed for Setup, Teardown, and any tests that were in progress or already completed.

See also: AWS API Documentation

Request Syntax

response = client.stop_job(
    arn='string'
)
Parameters
arn (string) --

[REQUIRED]

Represents the Amazon Resource Name (ARN) of the Device Farm job you wish to stop.

Return type
dict
Returns
Response Syntax
{
    'job': {
        'arn': 'string',
        'name': 'string',
        'type': 'BUILTIN_FUZZ'|'BUILTIN_EXPLORER'|'WEB_PERFORMANCE_PROFILE'|'APPIUM_JAVA_JUNIT'|'APPIUM_JAVA_TESTNG'|'APPIUM_PYTHON'|'APPIUM_NODE'|'APPIUM_RUBY'|'APPIUM_WEB_JAVA_JUNIT'|'APPIUM_WEB_JAVA_TESTNG'|'APPIUM_WEB_PYTHON'|'APPIUM_WEB_NODE'|'APPIUM_WEB_RUBY'|'CALABASH'|'INSTRUMENTATION'|'UIAUTOMATION'|'UIAUTOMATOR'|'XCTEST'|'XCTEST_UI'|'REMOTE_ACCESS_RECORD'|'REMOTE_ACCESS_REPLAY',
        'created': datetime(2015, 1, 1),
        'status': 'PENDING'|'PENDING_CONCURRENCY'|'PENDING_DEVICE'|'PROCESSING'|'SCHEDULING'|'PREPARING'|'RUNNING'|'COMPLETED'|'STOPPING',
        'result': 'PENDING'|'PASSED'|'WARNED'|'FAILED'|'SKIPPED'|'ERRORED'|'STOPPED',
        'started': datetime(2015, 1, 1),
        'stopped': datetime(2015, 1, 1),
        'counters': {
            'total': 123,
            'passed': 123,
            'failed': 123,
            'warned': 123,
            'errored': 123,
            'stopped': 123,
            'skipped': 123
        },
        'message': 'string',
        'device': {
            'arn': 'string',
            'name': 'string',
            'manufacturer': 'string',
            'model': 'string',
            'modelId': 'string',
            'formFactor': 'PHONE'|'TABLET',
            'platform': 'ANDROID'|'IOS',
            'os': 'string',
            'cpu': {
                'frequency': 'string',
                'architecture': 'string',
                'clock': 123.0
            },
            'resolution': {
                'width': 123,
                'height': 123
            },
            'heapSize': 123,
            'memory': 123,
            'image': 'string',
            'carrier': 'string',
            'radio': 'string',
            'remoteAccessEnabled': True|False,
            'remoteDebugEnabled': True|False,
            'fleetType': 'string',
            'fleetName': 'string',
            'instances': [
                {
                    'arn': 'string',
                    'deviceArn': 'string',
                    'labels': [
                        'string',
                    ],
                    'status': 'IN_USE'|'PREPARING'|'AVAILABLE'|'NOT_AVAILABLE',
                    'udid': 'string',
                    'instanceProfile': {
                        'arn': 'string',
                        'packageCleanup': True|False,
                        'excludeAppPackagesFromCleanup': [
                            'string',
                        ],
                        'rebootAfterUse': True|False,
                        'name': 'string',
                        'description': 'string'
                    }
                },
            ],
            'availability': 'TEMPORARY_NOT_AVAILABLE'|'BUSY'|'AVAILABLE'|'HIGHLY_AVAILABLE'
        },
        'instanceArn': 'string',
        'deviceMinutes': {
            'total': 123.0,
            'metered': 123.0,
            'unmetered': 123.0
        },
        'videoEndpoint': 'string',
        'videoCapture': True|False
    }
}

Response Structure

  • (dict) --
    • job (dict) --

      The job that was stopped.

      • arn (string) --

        The job's ARN.

      • name (string) --

        The job's name.

      • type (string) --

        The job's type.

        Allowed values include the following:

        • BUILTIN_FUZZ: The built-in fuzz type.
        • BUILTIN_EXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.
        • APPIUM_JAVA_JUNIT: The Appium Java JUnit type.
        • APPIUM_JAVA_TESTNG: The Appium Java TestNG type.
        • APPIUM_PYTHON: The Appium Python type.
        • APPIUM_NODE: The Appium Node.js type.
        • APPIUM_RUBY: The Appium Ruby type.
        • APPIUM_WEB_JAVA_JUNIT: The Appium Java JUnit type for web apps.
        • APPIUM_WEB_JAVA_TESTNG: The Appium Java TestNG type for web apps.
        • APPIUM_WEB_PYTHON: The Appium Python type for web apps.
        • APPIUM_WEB_NODE: The Appium Node.js type for web apps.
        • APPIUM_WEB_RUBY: The Appium Ruby test type for web apps.
        • CALABASH: The Calabash type.
        • INSTRUMENTATION: The Instrumentation type.
        • UIAUTOMATION: The uiautomation type.
        • UIAUTOMATOR: The uiautomator type.
        • XCTEST: The Xcode test type.
        • XCTEST_UI: The Xcode UI test type.
      • created (datetime) --

        When the job was created.

      • status (string) --

        The job's status.

        Allowed values include:

        • PENDING: A pending status.
        • PENDING_CONCURRENCY: A pending concurrency status.
        • PENDING_DEVICE: A pending device status.
        • PROCESSING: A processing status.
        • SCHEDULING: A scheduling status.
        • PREPARING: A preparing status.
        • RUNNING: A running status.
        • COMPLETED: A completed status.
        • STOPPING: A stopping status.
      • result (string) --

        The job's result.

        Allowed values include:

        • PENDING: A pending condition.
        • PASSED: A passing condition.
        • WARNED: A warning condition.
        • FAILED: A failed condition.
        • SKIPPED: A skipped condition.
        • ERRORED: An error condition.
        • STOPPED: A stopped condition.
      • started (datetime) --

        The job's start time.

      • stopped (datetime) --

        The job's stop time.

      • counters (dict) --

        The job's result counters.

        • total (integer) --

          The total number of entities.

        • passed (integer) --

          The number of passed entities.

        • failed (integer) --

          The number of failed entities.

        • warned (integer) --

          The number of warned entities.

        • errored (integer) --

          The number of errored entities.

        • stopped (integer) --

          The number of stopped entities.

        • skipped (integer) --

          The number of skipped entities.

      • message (string) --

        A message about the job's result.

      • device (dict) --

        The device (phone or tablet).

        • arn (string) --

          The device's ARN.

        • name (string) --

          The device's display name.

        • manufacturer (string) --

          The device's manufacturer name.

        • model (string) --

          The device's model name.

        • modelId (string) --

          The device's model ID.

        • formFactor (string) --

          The device's form factor.

          Allowed values include:

          • PHONE: The phone form factor.
          • TABLET: The tablet form factor.
        • platform (string) --

          The device's platform.

          Allowed values include:

          • ANDROID: The Android platform.
          • IOS: The iOS platform.
        • os (string) --

          The device's operating system type.

        • cpu (dict) --

          Information about the device's CPU.

          • frequency (string) --

            The CPU's frequency.

          • architecture (string) --

            The CPU's architecture, for example x86 or ARM.

          • clock (float) --

            The clock speed of the device's CPU, expressed in hertz (Hz). For example, a 1.2 GHz CPU is expressed as 1200000000.

        • resolution (dict) --

          The resolution of the device.

          • width (integer) --

            The screen resolution's width, expressed in pixels.

          • height (integer) --

            The screen resolution's height, expressed in pixels.

        • heapSize (integer) --

          The device's heap size, expressed in bytes.

        • memory (integer) --

          The device's total memory size, expressed in bytes.

        • image (string) --

          The device's image name.

        • carrier (string) --

          The device's carrier.

        • radio (string) --

          The device's radio.

        • remoteAccessEnabled (boolean) --

          Specifies whether remote access has been enabled for the specified device.

        • remoteDebugEnabled (boolean) --

          This flag is set to true if remote debugging is enabled for the device.

          Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .
        • fleetType (string) --

          The type of fleet to which this device belongs. Possible values for fleet type are PRIVATE and PUBLIC.

        • fleetName (string) --

          The name of the fleet to which this device belongs.

        • instances (list) --

          The instances belonging to this device.

          • (dict) --

            Represents the device instance.

            • arn (string) --

              The Amazon Resource Name (ARN) of the device instance.

            • deviceArn (string) --

              The Amazon Resource Name (ARN) of the device.

            • labels (list) --

              An array of strings describing the device instance.

              • (string) --
            • status (string) --

              The status of the device instance. Valid values are listed below.

            • udid (string) --

              Unique device identifier for the device instance.

            • instanceProfile (dict) --

              A object containing information about the instance profile.

              • arn (string) --

                The Amazon Resource Name (ARN) of the instance profile.

              • packageCleanup (boolean) --

                When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.

              • excludeAppPackagesFromCleanup (list) --

                An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

                The list of packages is only considered if you set packageCleanup to true .

                • (string) --
              • rebootAfterUse (boolean) --

                When set to true , Device Farm will reboot the instance after a test run. The default value is true .

              • name (string) --

                The name of the instance profile.

              • description (string) --

                The description of the instance profile.

        • availability (string) --

          Reflects how likely a device will be available for a test run. It is currently available in the ListDevices and GetDevice API methods.

      • instanceArn (string) --

        The Amazon Resource Name (ARN) of the instance.

      • deviceMinutes (dict) --

        Represents the total (metered or unmetered) minutes used by the job.

        • total (float) --

          When specified, represents the total minutes used by the resource to run tests.

        • metered (float) --

          When specified, represents only the sum of metered minutes used by the resource to run tests.

        • unmetered (float) --

          When specified, represents only the sum of unmetered minutes used by the resource to run tests.

      • videoEndpoint (string) --

        The endpoint for streaming device video.

      • videoCapture (boolean) --

        This value is set to true if video capture is enabled; otherwise, it is set to false.

stop_remote_access_session(**kwargs)

Ends a specified remote access session.

See also: AWS API Documentation

Request Syntax

response = client.stop_remote_access_session(
    arn='string'
)
Parameters
arn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the remote access session you wish to stop.

Return type
dict
Returns
Response Syntax
{
    'remoteAccessSession': {
        'arn': 'string',
        'name': 'string',
        'created': datetime(2015, 1, 1),
        'status': 'PENDING'|'PENDING_CONCURRENCY'|'PENDING_DEVICE'|'PROCESSING'|'SCHEDULING'|'PREPARING'|'RUNNING'|'COMPLETED'|'STOPPING',
        'result': 'PENDING'|'PASSED'|'WARNED'|'FAILED'|'SKIPPED'|'ERRORED'|'STOPPED',
        'message': 'string',
        'started': datetime(2015, 1, 1),
        'stopped': datetime(2015, 1, 1),
        'device': {
            'arn': 'string',
            'name': 'string',
            'manufacturer': 'string',
            'model': 'string',
            'modelId': 'string',
            'formFactor': 'PHONE'|'TABLET',
            'platform': 'ANDROID'|'IOS',
            'os': 'string',
            'cpu': {
                'frequency': 'string',
                'architecture': 'string',
                'clock': 123.0
            },
            'resolution': {
                'width': 123,
                'height': 123
            },
            'heapSize': 123,
            'memory': 123,
            'image': 'string',
            'carrier': 'string',
            'radio': 'string',
            'remoteAccessEnabled': True|False,
            'remoteDebugEnabled': True|False,
            'fleetType': 'string',
            'fleetName': 'string',
            'instances': [
                {
                    'arn': 'string',
                    'deviceArn': 'string',
                    'labels': [
                        'string',
                    ],
                    'status': 'IN_USE'|'PREPARING'|'AVAILABLE'|'NOT_AVAILABLE',
                    'udid': 'string',
                    'instanceProfile': {
                        'arn': 'string',
                        'packageCleanup': True|False,
                        'excludeAppPackagesFromCleanup': [
                            'string',
                        ],
                        'rebootAfterUse': True|False,
                        'name': 'string',
                        'description': 'string'
                    }
                },
            ],
            'availability': 'TEMPORARY_NOT_AVAILABLE'|'BUSY'|'AVAILABLE'|'HIGHLY_AVAILABLE'
        },
        'instanceArn': 'string',
        'remoteDebugEnabled': True|False,
        'remoteRecordEnabled': True|False,
        'remoteRecordAppArn': 'string',
        'hostAddress': 'string',
        'clientId': 'string',
        'billingMethod': 'METERED'|'UNMETERED',
        'deviceMinutes': {
            'total': 123.0,
            'metered': 123.0,
            'unmetered': 123.0
        },
        'endpoint': 'string',
        'deviceUdid': 'string',
        'interactionMode': 'INTERACTIVE'|'NO_VIDEO'|'VIDEO_ONLY',
        'skipAppResign': True|False
    }
}

Response Structure

  • (dict) --

    Represents the response from the server that describes the remote access session when AWS Device Farm stops the session.

    • remoteAccessSession (dict) --

      A container representing the metadata from the service about the remote access session you are stopping.

      • arn (string) --

        The Amazon Resource Name (ARN) of the remote access session.

      • name (string) --

        The name of the remote access session.

      • created (datetime) --

        The date and time the remote access session was created.

      • status (string) --

        The status of the remote access session. Can be any of the following:

        • PENDING: A pending status.
        • PENDING_CONCURRENCY: A pending concurrency status.
        • PENDING_DEVICE: A pending device status.
        • PROCESSING: A processing status.
        • SCHEDULING: A scheduling status.
        • PREPARING: A preparing status.
        • RUNNING: A running status.
        • COMPLETED: A completed status.
        • STOPPING: A stopping status.
      • result (string) --

        The result of the remote access session. Can be any of the following:

        • PENDING: A pending condition.
        • PASSED: A passing condition.
        • WARNED: A warning condition.
        • FAILED: A failed condition.
        • SKIPPED: A skipped condition.
        • ERRORED: An error condition.
        • STOPPED: A stopped condition.
      • message (string) --

        A message about the remote access session.

      • started (datetime) --

        The date and time the remote access session was started.

      • stopped (datetime) --

        The date and time the remote access session was stopped.

      • device (dict) --

        The device (phone or tablet) used in the remote access session.

        • arn (string) --

          The device's ARN.

        • name (string) --

          The device's display name.

        • manufacturer (string) --

          The device's manufacturer name.

        • model (string) --

          The device's model name.

        • modelId (string) --

          The device's model ID.

        • formFactor (string) --

          The device's form factor.

          Allowed values include:

          • PHONE: The phone form factor.
          • TABLET: The tablet form factor.
        • platform (string) --

          The device's platform.

          Allowed values include:

          • ANDROID: The Android platform.
          • IOS: The iOS platform.
        • os (string) --

          The device's operating system type.

        • cpu (dict) --

          Information about the device's CPU.

          • frequency (string) --

            The CPU's frequency.

          • architecture (string) --

            The CPU's architecture, for example x86 or ARM.

          • clock (float) --

            The clock speed of the device's CPU, expressed in hertz (Hz). For example, a 1.2 GHz CPU is expressed as 1200000000.

        • resolution (dict) --

          The resolution of the device.

          • width (integer) --

            The screen resolution's width, expressed in pixels.

          • height (integer) --

            The screen resolution's height, expressed in pixels.

        • heapSize (integer) --

          The device's heap size, expressed in bytes.

        • memory (integer) --

          The device's total memory size, expressed in bytes.

        • image (string) --

          The device's image name.

        • carrier (string) --

          The device's carrier.

        • radio (string) --

          The device's radio.

        • remoteAccessEnabled (boolean) --

          Specifies whether remote access has been enabled for the specified device.

        • remoteDebugEnabled (boolean) --

          This flag is set to true if remote debugging is enabled for the device.

          Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .
        • fleetType (string) --

          The type of fleet to which this device belongs. Possible values for fleet type are PRIVATE and PUBLIC.

        • fleetName (string) --

          The name of the fleet to which this device belongs.

        • instances (list) --

          The instances belonging to this device.

          • (dict) --

            Represents the device instance.

            • arn (string) --

              The Amazon Resource Name (ARN) of the device instance.

            • deviceArn (string) --

              The Amazon Resource Name (ARN) of the device.

            • labels (list) --

              An array of strings describing the device instance.

              • (string) --
            • status (string) --

              The status of the device instance. Valid values are listed below.

            • udid (string) --

              Unique device identifier for the device instance.

            • instanceProfile (dict) --

              A object containing information about the instance profile.

              • arn (string) --

                The Amazon Resource Name (ARN) of the instance profile.

              • packageCleanup (boolean) --

                When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.

              • excludeAppPackagesFromCleanup (list) --

                An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

                The list of packages is only considered if you set packageCleanup to true .

                • (string) --
              • rebootAfterUse (boolean) --

                When set to true , Device Farm will reboot the instance after a test run. The default value is true .

              • name (string) --

                The name of the instance profile.

              • description (string) --

                The description of the instance profile.

        • availability (string) --

          Reflects how likely a device will be available for a test run. It is currently available in the ListDevices and GetDevice API methods.

      • instanceArn (string) --

        The Amazon Resource Name (ARN) of the instance.

      • remoteDebugEnabled (boolean) --

        This flag is set to true if remote debugging is enabled for the remote access session.

        Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .
      • remoteRecordEnabled (boolean) --

        This flag is set to true if remote recording is enabled for the remote access session.

      • remoteRecordAppArn (string) --

        The Amazon Resource Name (ARN) for the app to be recorded in the remote access session.

      • hostAddress (string) --

        IP address of the EC2 host where you need to connect to remotely debug devices. Only returned if remote debugging is enabled for the remote access session.

        Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .
      • clientId (string) --

        Unique identifier of your client for the remote access session. Only returned if remote debugging is enabled for the remote access session.

        Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .
      • billingMethod (string) --

        The billing method of the remote access session. Possible values include METERED or UNMETERED . For more information about metered devices, see AWS Device Farm terminology ."

      • deviceMinutes (dict) --

        The number of minutes a device is used in a remote access session (including setup and teardown minutes).

        • total (float) --

          When specified, represents the total minutes used by the resource to run tests.

        • metered (float) --

          When specified, represents only the sum of metered minutes used by the resource to run tests.

        • unmetered (float) --

          When specified, represents only the sum of unmetered minutes used by the resource to run tests.

      • endpoint (string) --

        The endpoint for the remote access sesssion.

      • deviceUdid (string) --

        Unique device identifier for the remote device. Only returned if remote debugging is enabled for the remote access session.

        Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .
      • interactionMode (string) --

        The interaction mode of the remote access session. Valid values are:

        • INTERACTIVE: You can interact with the iOS device by viewing, touching, and rotating the screen. You cannot run XCUITest framework-based tests in this mode.
        • NO_VIDEO: You are connected to the device but cannot interact with it or view the screen. This mode has the fastest test execution speed. You can run XCUITest framework-based tests in this mode.
        • VIDEO_ONLY: You can view the screen but cannot touch or rotate it. You can run XCUITest framework-based tests and watch the screen in this mode.
      • skipAppResign (boolean) --

        When set to true , for private devices, Device Farm will not sign your app again. For public devices, Device Farm always signs your apps again and this parameter has no effect.

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

stop_run(**kwargs)

Initiates a stop request for the current test run. AWS Device Farm will immediately stop the run on devices where tests have not started executing, and you will not be billed for these devices. On devices where tests have started executing, Setup Suite and Teardown Suite tests will run to completion before stopping execution on those devices. You will be billed for Setup, Teardown, and any tests that were in progress or already completed.

See also: AWS API Documentation

Request Syntax

response = client.stop_run(
    arn='string'
)
Parameters
arn (string) --

[REQUIRED]

Represents the Amazon Resource Name (ARN) of the Device Farm run you wish to stop.

Return type
dict
Returns
Response Syntax
{
    'run': {
        'arn': 'string',
        'name': 'string',
        'type': 'BUILTIN_FUZZ'|'BUILTIN_EXPLORER'|'WEB_PERFORMANCE_PROFILE'|'APPIUM_JAVA_JUNIT'|'APPIUM_JAVA_TESTNG'|'APPIUM_PYTHON'|'APPIUM_NODE'|'APPIUM_RUBY'|'APPIUM_WEB_JAVA_JUNIT'|'APPIUM_WEB_JAVA_TESTNG'|'APPIUM_WEB_PYTHON'|'APPIUM_WEB_NODE'|'APPIUM_WEB_RUBY'|'CALABASH'|'INSTRUMENTATION'|'UIAUTOMATION'|'UIAUTOMATOR'|'XCTEST'|'XCTEST_UI'|'REMOTE_ACCESS_RECORD'|'REMOTE_ACCESS_REPLAY',
        'platform': 'ANDROID'|'IOS',
        'created': datetime(2015, 1, 1),
        'status': 'PENDING'|'PENDING_CONCURRENCY'|'PENDING_DEVICE'|'PROCESSING'|'SCHEDULING'|'PREPARING'|'RUNNING'|'COMPLETED'|'STOPPING',
        'result': 'PENDING'|'PASSED'|'WARNED'|'FAILED'|'SKIPPED'|'ERRORED'|'STOPPED',
        'started': datetime(2015, 1, 1),
        'stopped': datetime(2015, 1, 1),
        'counters': {
            'total': 123,
            'passed': 123,
            'failed': 123,
            'warned': 123,
            'errored': 123,
            'stopped': 123,
            'skipped': 123
        },
        'message': 'string',
        'totalJobs': 123,
        'completedJobs': 123,
        'billingMethod': 'METERED'|'UNMETERED',
        'deviceMinutes': {
            'total': 123.0,
            'metered': 123.0,
            'unmetered': 123.0
        },
        'networkProfile': {
            'arn': 'string',
            'name': 'string',
            'description': 'string',
            'type': 'CURATED'|'PRIVATE',
            'uplinkBandwidthBits': 123,
            'downlinkBandwidthBits': 123,
            'uplinkDelayMs': 123,
            'downlinkDelayMs': 123,
            'uplinkJitterMs': 123,
            'downlinkJitterMs': 123,
            'uplinkLossPercent': 123,
            'downlinkLossPercent': 123
        },
        'parsingResultUrl': 'string',
        'resultCode': 'PARSING_FAILED'|'VPC_ENDPOINT_SETUP_FAILED',
        'seed': 123,
        'appUpload': 'string',
        'eventCount': 123,
        'jobTimeoutMinutes': 123,
        'devicePoolArn': 'string',
        'locale': 'string',
        'radios': {
            'wifi': True|False,
            'bluetooth': True|False,
            'nfc': True|False,
            'gps': True|False
        },
        'location': {
            'latitude': 123.0,
            'longitude': 123.0
        },
        'customerArtifactPaths': {
            'iosPaths': [
                'string',
            ],
            'androidPaths': [
                'string',
            ],
            'deviceHostPaths': [
                'string',
            ]
        },
        'webUrl': 'string',
        'skipAppResign': True|False,
        'testSpecArn': 'string',
        'deviceSelectionResult': {
            'filters': [
                {
                    'attribute': 'ARN'|'PLATFORM'|'OS_VERSION'|'MODEL'|'AVAILABILITY'|'FORM_FACTOR'|'MANUFACTURER'|'REMOTE_ACCESS_ENABLED'|'REMOTE_DEBUG_ENABLED'|'INSTANCE_ARN'|'INSTANCE_LABELS'|'FLEET_TYPE',
                    'operator': 'EQUALS'|'LESS_THAN'|'LESS_THAN_OR_EQUALS'|'GREATER_THAN'|'GREATER_THAN_OR_EQUALS'|'IN'|'NOT_IN'|'CONTAINS',
                    'values': [
                        'string',
                    ]
                },
            ],
            'matchedDevicesCount': 123,
            'maxDevices': 123
        }
    }
}

Response Structure

  • (dict) --

    Represents the results of your stop run attempt.

    • run (dict) --

      The run that was stopped.

      • arn (string) --

        The run's ARN.

      • name (string) --

        The run's name.

      • type (string) --

        The run's type.

        Must be one of the following values:

        • BUILTIN_FUZZ: The built-in fuzz type.
        • BUILTIN_EXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.
        • APPIUM_JAVA_JUNIT: The Appium Java JUnit type.
        • APPIUM_JAVA_TESTNG: The Appium Java TestNG type.
        • APPIUM_PYTHON: The Appium Python type.
        • APPIUM_NODE: The Appium Node.js type.
        • APPIUM_RUBY: The Appium Ruby type.
        • APPIUM_WEB_JAVA_JUNIT: The Appium Java JUnit type for web apps.
        • APPIUM_WEB_JAVA_TESTNG: The Appium Java TestNG type for web apps.
        • APPIUM_WEB_PYTHON: The Appium Python type for web apps.
        • APPIUM_WEB_NODE: The Appium Node.js type for web apps.
        • APPIUM_WEB_RUBY: The Appium Ruby type for web apps.
        • CALABASH: The Calabash type.
        • INSTRUMENTATION: The Instrumentation type.
        • UIAUTOMATION: The uiautomation type.
        • UIAUTOMATOR: The uiautomator type.
        • XCTEST: The Xcode test type.
        • XCTEST_UI: The Xcode UI test type.
      • platform (string) --

        The run's platform.

        Allowed values include:

        • ANDROID: The Android platform.
        • IOS: The iOS platform.
      • created (datetime) --

        When the run was created.

      • status (string) --

        The run's status.

        Allowed values include:

        • PENDING: A pending status.
        • PENDING_CONCURRENCY: A pending concurrency status.
        • PENDING_DEVICE: A pending device status.
        • PROCESSING: A processing status.
        • SCHEDULING: A scheduling status.
        • PREPARING: A preparing status.
        • RUNNING: A running status.
        • COMPLETED: A completed status.
        • STOPPING: A stopping status.
      • result (string) --

        The run's result.

        Allowed values include:

        • PENDING: A pending condition.
        • PASSED: A passing condition.
        • WARNED: A warning condition.
        • FAILED: A failed condition.
        • SKIPPED: A skipped condition.
        • ERRORED: An error condition.
        • STOPPED: A stopped condition.
      • started (datetime) --

        The run's start time.

      • stopped (datetime) --

        The run's stop time.

      • counters (dict) --

        The run's result counters.

        • total (integer) --

          The total number of entities.

        • passed (integer) --

          The number of passed entities.

        • failed (integer) --

          The number of failed entities.

        • warned (integer) --

          The number of warned entities.

        • errored (integer) --

          The number of errored entities.

        • stopped (integer) --

          The number of stopped entities.

        • skipped (integer) --

          The number of skipped entities.

      • message (string) --

        A message about the run's result.

      • totalJobs (integer) --

        The total number of jobs for the run.

      • completedJobs (integer) --

        The total number of completed jobs.

      • billingMethod (string) --

        Specifies the billing method for a test run: metered or unmetered . If the parameter is not specified, the default value is metered .

      • deviceMinutes (dict) --

        Represents the total (metered or unmetered) minutes used by the test run.

        • total (float) --

          When specified, represents the total minutes used by the resource to run tests.

        • metered (float) --

          When specified, represents only the sum of metered minutes used by the resource to run tests.

        • unmetered (float) --

          When specified, represents only the sum of unmetered minutes used by the resource to run tests.

      • networkProfile (dict) --

        The network profile being used for a test run.

        • arn (string) --

          The Amazon Resource Name (ARN) of the network profile.

        • name (string) --

          The name of the network profile.

        • description (string) --

          The description of the network profile.

        • type (string) --

          The type of network profile. Valid values are listed below.

        • uplinkBandwidthBits (integer) --

          The data throughput rate in bits per second, as an integer from 0 to 104857600.

        • downlinkBandwidthBits (integer) --

          The data throughput rate in bits per second, as an integer from 0 to 104857600.

        • uplinkDelayMs (integer) --

          Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.

        • downlinkDelayMs (integer) --

          Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.

        • uplinkJitterMs (integer) --

          Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.

        • downlinkJitterMs (integer) --

          Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.

        • uplinkLossPercent (integer) --

          Proportion of transmitted packets that fail to arrive from 0 to 100 percent.

        • downlinkLossPercent (integer) --

          Proportion of received packets that fail to arrive from 0 to 100 percent.

      • parsingResultUrl (string) --

        Read-only URL for an object in S3 bucket where you can get the parsing results of the test package. If the test package doesn't parse, the reason why it doesn't parse appears in the file that this URL points to.

      • resultCode (string) --

        Supporting field for the result field. Set only if result is SKIPPED . PARSING_FAILED if the result is skipped because of test package parsing failure.

      • seed (integer) --

        For fuzz tests, this is a seed to use for randomizing the UI fuzz test. Using the same seed value between tests ensures identical event sequences.

      • appUpload (string) --

        An app to upload or that has been uploaded.

      • eventCount (integer) --

        For fuzz tests, this is the number of events, between 1 and 10000, that the UI fuzz test should perform.

      • jobTimeoutMinutes (integer) --

        The number of minutes the job will execute before it times out.

      • devicePoolArn (string) --

        The ARN of the device pool for the run.

      • locale (string) --

        Information about the locale that is used for the run.

      • radios (dict) --

        Information about the radio states for the run.

        • wifi (boolean) --

          True if Wi-Fi is enabled at the beginning of the test; otherwise, false.

        • bluetooth (boolean) --

          True if Bluetooth is enabled at the beginning of the test; otherwise, false.

        • nfc (boolean) --

          True if NFC is enabled at the beginning of the test; otherwise, false.

        • gps (boolean) --

          True if GPS is enabled at the beginning of the test; otherwise, false.

      • location (dict) --

        Information about the location that is used for the run.

        • latitude (float) --

          The latitude.

        • longitude (float) --

          The longitude.

      • customerArtifactPaths (dict) --

        Output CustomerArtifactPaths object for the test run.

        • iosPaths (list) --

          Comma-separated list of paths on the iOS device where the artifacts generated by the customer's tests will be pulled from.

          • (string) --
        • androidPaths (list) --

          Comma-separated list of paths on the Android device where the artifacts generated by the customer's tests will be pulled from.

          • (string) --
        • deviceHostPaths (list) --

          Comma-separated list of paths in the test execution environment where the artifacts generated by the customer's tests will be pulled from.

          • (string) --
      • webUrl (string) --

        The Device Farm console URL for the recording of the run.

      • skipAppResign (boolean) --

        When set to true , for private devices, Device Farm will not sign your app again. For public devices, Device Farm always signs your apps again and this parameter has no effect.

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

      • testSpecArn (string) --

        The ARN of the YAML-formatted test specification for the run.

      • deviceSelectionResult (dict) --

        The results of a device filter used to select the devices for a test run.

        • filters (list) --

          The filters in a device selection result.

          • (dict) --

            Represents a device filter used to select a set of devices to be included in a test run. This data structure is passed in as the deviceSelectionConfiguration parameter to ScheduleRun. For an example of the JSON request syntax, see ScheduleRun .

            It is also passed in as the filters parameter to ListDevices. For an example of the JSON request syntax, see ListDevices .

            • attribute (string) --

              The aspect of a device such as platform or model used as the selection criteria in a device filter.

              The supported operators for each attribute are provided in the following list.

              ARN

              The Amazon Resource Name (ARN) of the device. For example, "arn:aws:devicefarm:us-west-2::device:12345Example".

              Supported operators : EQUALS , IN , NOT_IN
              PLATFORM

              The device platform. Valid values are "ANDROID" or "IOS".

              Supported operators : EQUALS
              OS_VERSION

              The operating system version. For example, "10.3.2".

              Supported operators : EQUALS , GREATER_THAN , GREATER_THAN_OR_EQUALS , IN , LESS_THAN , LESS_THAN_OR_EQUALS , NOT_IN
              MODEL

              The device model. For example, "iPad 5th Gen".

              Supported operators : CONTAINS , EQUALS , IN , NOT_IN
              AVAILABILITY

              The current availability of the device. Valid values are "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".

              Supported operators : EQUALS
              FORM_FACTOR

              The device form factor. Valid values are "PHONE" or "TABLET".

              Supported operators : EQUALS
              MANUFACTURER

              The device manufacturer. For example, "Apple".

              Supported operators : EQUALS , IN , NOT_IN
              REMOTE_ACCESS_ENABLED

              Whether the device is enabled for remote access. Valid values are "TRUE" or "FALSE".

              Supported operators : EQUALS
              REMOTE_DEBUG_ENABLED

              Ignored. Whether the device is enabled for remote debugging. Valid values are "TRUE" or "FALSE".

              Supported operators : EQUALS

              This filter will be ignored, as remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

              INSTANCE_ARN

              The Amazon Resource Name (ARN) of the device instance.

              Supported operators : EQUALS , IN , NOT_IN
              INSTANCE_LABELS

              The label of the device instance.

              Supported operators : CONTAINS
              FLEET_TYPE

              The fleet type. Valid values are "PUBLIC" or "PRIVATE".

              Supported operators : EQUALS
            • operator (string) --

              Specifies how Device Farm compares the filter's attribute to the value. For the operators that are supported by each attribute, see the attribute descriptions.

            • values (list) --

              An array of one or more filter values used in a device filter.

              Operator Values
              • The IN and NOT_IN operators can take a values array that has more than one element.
              • The other operators require an array with a single element.
              Attribute Values
              • The PLATFORM attribute can be set to "ANDROID" or "IOS".
              • The AVAILABILITY attribute can be set to "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".
              • The FORM_FACTOR attribute can be set to "PHONE" or "TABLET".
              • The FLEET_TYPE attribute can be set to "PUBLIC" or "PRIVATE".
              • (string) --
        • matchedDevicesCount (integer) --

          The number of devices that matched the device filter selection criteria.

        • maxDevices (integer) --

          The maximum number of devices to be selected by a device filter and included in a test run.

Examples

The following example stops a specific test run.

response = client.stop_run(
    # You can get the Amazon Resource Name (ARN) of the test run by using the list-runs CLI command.
    arn='arn:aws:devicefarm:us-west-2:123456789101:run:EXAMPLE-GUID-123-456',
)

print(response)

Expected Output:

{
    'run': {
    },
    'ResponseMetadata': {
        '...': '...',
    },
}
tag_resource(**kwargs)

Associates the specified tags to a resource with the specified resourceArn . If existing tags on a resource are not specified in the request parameters, they are not changed. When a resource is deleted, the tags associated with that resource are deleted as well.

See also: AWS API Documentation

Request Syntax

response = client.tag_resource(
    ResourceARN='string',
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
Parameters
  • ResourceARN (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the resource(s) to which to add tags. You can associate tags with the following Device Farm resources: PROJECT , RUN , NETWORK_PROFILE , INSTANCE_PROFILE , DEVICE_INSTANCE , SESSION , DEVICE_POOL , DEVICE , and VPCE_CONFIGURATION .

  • Tags (list) --

    [REQUIRED]

    The tags to add to the resource. A tag is an array of key-value pairs. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.

    • (dict) --

      The metadata that you apply to a resource to help you categorize and organize it. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.

      • Key (string) -- [REQUIRED]

        One part of a key-value pair that make up a tag. A key is a general label that acts like a category for more specific tag values.

      • Value (string) -- [REQUIRED]

        The optional part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key).

Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

untag_resource(**kwargs)

Deletes the specified tags from a resource.

See also: AWS API Documentation

Request Syntax

response = client.untag_resource(
    ResourceARN='string',
    TagKeys=[
        'string',
    ]
)
Parameters
  • ResourceARN (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the resource(s) from which to delete tags. You can associate tags with the following Device Farm resources: PROJECT , RUN , NETWORK_PROFILE , INSTANCE_PROFILE , DEVICE_INSTANCE , SESSION , DEVICE_POOL , DEVICE , and VPCE_CONFIGURATION .

  • TagKeys (list) --

    [REQUIRED]

    The keys of the tags to be removed.

    • (string) --
Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

update_device_instance(**kwargs)

Updates information about an existing private device instance.

See also: AWS API Documentation

Request Syntax

response = client.update_device_instance(
    arn='string',
    profileArn='string',
    labels=[
        'string',
    ]
)
Parameters
  • arn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the device instance.

  • profileArn (string) -- The Amazon Resource Name (ARN) of the profile that you want to associate with the device instance.
  • labels (list) --

    An array of strings that you want to associate with the device instance.

    • (string) --
Return type

dict

Returns

Response Syntax

{
    'deviceInstance': {
        'arn': 'string',
        'deviceArn': 'string',
        'labels': [
            'string',
        ],
        'status': 'IN_USE'|'PREPARING'|'AVAILABLE'|'NOT_AVAILABLE',
        'udid': 'string',
        'instanceProfile': {
            'arn': 'string',
            'packageCleanup': True|False,
            'excludeAppPackagesFromCleanup': [
                'string',
            ],
            'rebootAfterUse': True|False,
            'name': 'string',
            'description': 'string'
        }
    }
}

Response Structure

  • (dict) --

    • deviceInstance (dict) --

      An object containing information about your device instance.

      • arn (string) --

        The Amazon Resource Name (ARN) of the device instance.

      • deviceArn (string) --

        The Amazon Resource Name (ARN) of the device.

      • labels (list) --

        An array of strings describing the device instance.

        • (string) --
      • status (string) --

        The status of the device instance. Valid values are listed below.

      • udid (string) --

        Unique device identifier for the device instance.

      • instanceProfile (dict) --

        A object containing information about the instance profile.

        • arn (string) --

          The Amazon Resource Name (ARN) of the instance profile.

        • packageCleanup (boolean) --

          When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.

        • excludeAppPackagesFromCleanup (list) --

          An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

          The list of packages is only considered if you set packageCleanup to true .

          • (string) --
        • rebootAfterUse (boolean) --

          When set to true , Device Farm will reboot the instance after a test run. The default value is true .

        • name (string) --

          The name of the instance profile.

        • description (string) --

          The description of the instance profile.

update_device_pool(**kwargs)

Modifies the name, description, and rules in a device pool given the attributes and the pool ARN. Rule updates are all-or-nothing, meaning they can only be updated as a whole (or not at all).

See also: AWS API Documentation

Request Syntax

response = client.update_device_pool(
    arn='string',
    name='string',
    description='string',
    rules=[
        {
            'attribute': 'ARN'|'PLATFORM'|'FORM_FACTOR'|'MANUFACTURER'|'REMOTE_ACCESS_ENABLED'|'REMOTE_DEBUG_ENABLED'|'APPIUM_VERSION'|'INSTANCE_ARN'|'INSTANCE_LABELS'|'FLEET_TYPE'|'OS_VERSION'|'MODEL'|'AVAILABILITY',
            'operator': 'EQUALS'|'LESS_THAN'|'LESS_THAN_OR_EQUALS'|'GREATER_THAN'|'GREATER_THAN_OR_EQUALS'|'IN'|'NOT_IN'|'CONTAINS',
            'value': 'string'
        },
    ],
    maxDevices=123,
    clearMaxDevices=True|False
)
Parameters
  • arn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the Device Farm device pool you wish to update.

  • name (string) -- A string representing the name of the device pool you wish to update.
  • description (string) -- A description of the device pool you wish to update.
  • rules (list) --

    Represents the rules you wish to modify for the device pool. Updating rules is optional; however, if you choose to update rules for your request, the update will replace the existing rules.

    • (dict) --

      Represents a condition for a device pool.

      • attribute (string) --

        The rule's stringified attribute. For example, specify the value as "\"abc\"" .

        The supported operators for each attribute are provided in the following list.

        APPIUM_VERSION

        The Appium version for the test.

        Supported operators : CONTAINS
        ARN

        The Amazon Resource Name (ARN) of the device. For example, "arn:aws:devicefarm:us-west-2::device:12345Example".

        Supported operators : EQUALS , IN , NOT_IN
        AVAILABILITY

        The current availability of the device. Valid values are "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".

        Supported operators : EQUALS
        FLEET_TYPE

        The fleet type. Valid values are "PUBLIC" or "PRIVATE".

        Supported operators : EQUALS
        FORM_FACTOR

        The device form factor. Valid values are "PHONE" or "TABLET".

        Supported operators : EQUALS , IN , NOT_IN
        INSTANCE_ARN

        The Amazon Resource Name (ARN) of the device instance.

        Supported operators : IN , NOT_IN
        INSTANCE_LABELS

        The label of the device instance.

        Supported operators : CONTAINS
        MANUFACTURER

        The device manufacturer. For example, "Apple".

        Supported operators : EQUALS , IN , NOT_IN
        MODEL

        The device model, such as "Apple iPad Air 2" or "Google Pixel".

        Supported operators : CONTAINS , EQUALS , IN , NOT_IN
        OS_VERSION

        The operating system version. For example, "10.3.2".

        Supported operators : EQUALS , GREATER_THAN , GREATER_THAN_OR_EQUALS , IN , LESS_THAN , LESS_THAN_OR_EQUALS , NOT_IN
        PLATFORM

        The device platform. Valid values are "ANDROID" or "IOS".

        Supported operators : EQUALS , IN , NOT_IN
        REMOTE_ACCESS_ENABLED

        Whether the device is enabled for remote access. Valid values are "TRUE" or "FALSE".

        Supported operators : EQUALS
        REMOTE_DEBUG_ENABLED

        Whether the device is enabled for remote debugging. Valid values are "TRUE" or "FALSE".

        Supported operators : EQUALS

        This filter will be ignored, as remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

      • operator (string) --

        Specifies how Device Farm compares the rule's attribute to the value. For the operators that are supported by each attribute, see the attribute descriptions.

      • value (string) --

        The rule's value.

  • maxDevices (integer) --

    The number of devices that Device Farm can add to your device pool. Device Farm adds devices that are available and that meet the criteria that you assign for the rules parameter. Depending on how many devices meet these constraints, your device pool might contain fewer devices than the value for this parameter.

    By specifying the maximum number of devices, you can control the costs that you incur by running tests.

    If you use this parameter in your request, you cannot use the clearMaxDevices parameter in the same request.

  • clearMaxDevices (boolean) --

    Sets whether the maxDevices parameter applies to your device pool. If you set this parameter to true , the maxDevices parameter does not apply, and Device Farm does not limit the number of devices that it adds to your device pool. In this case, Device Farm adds all available devices that meet the criteria that are specified for the rules parameter.

    If you use this parameter in your request, you cannot use the maxDevices parameter in the same request.

Return type

dict

Returns

Response Syntax

{
    'devicePool': {
        'arn': 'string',
        'name': 'string',
        'description': 'string',
        'type': 'CURATED'|'PRIVATE',
        'rules': [
            {
                'attribute': 'ARN'|'PLATFORM'|'FORM_FACTOR'|'MANUFACTURER'|'REMOTE_ACCESS_ENABLED'|'REMOTE_DEBUG_ENABLED'|'APPIUM_VERSION'|'INSTANCE_ARN'|'INSTANCE_LABELS'|'FLEET_TYPE'|'OS_VERSION'|'MODEL'|'AVAILABILITY',
                'operator': 'EQUALS'|'LESS_THAN'|'LESS_THAN_OR_EQUALS'|'GREATER_THAN'|'GREATER_THAN_OR_EQUALS'|'IN'|'NOT_IN'|'CONTAINS',
                'value': 'string'
            },
        ],
        'maxDevices': 123
    }
}

Response Structure

  • (dict) --

    Represents the result of an update device pool request.

    • devicePool (dict) --

      The device pool you just updated.

      • arn (string) --

        The device pool's ARN.

      • name (string) --

        The device pool's name.

      • description (string) --

        The device pool's description.

      • type (string) --

        The device pool's type.

        Allowed values include:

        • CURATED: A device pool that is created and managed by AWS Device Farm.
        • PRIVATE: A device pool that is created and managed by the device pool developer.
      • rules (list) --

        Information about the device pool's rules.

        • (dict) --

          Represents a condition for a device pool.

          • attribute (string) --

            The rule's stringified attribute. For example, specify the value as "\"abc\"" .

            The supported operators for each attribute are provided in the following list.

            APPIUM_VERSION

            The Appium version for the test.

            Supported operators : CONTAINS

            ARN

            The Amazon Resource Name (ARN) of the device. For example, "arn:aws:devicefarm:us-west-2::device:12345Example".

            Supported operators : EQUALS , IN , NOT_IN

            AVAILABILITY

            The current availability of the device. Valid values are "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".

            Supported operators : EQUALS

            FLEET_TYPE

            The fleet type. Valid values are "PUBLIC" or "PRIVATE".

            Supported operators : EQUALS

            FORM_FACTOR

            The device form factor. Valid values are "PHONE" or "TABLET".

            Supported operators : EQUALS , IN , NOT_IN

            INSTANCE_ARN

            The Amazon Resource Name (ARN) of the device instance.

            Supported operators : IN , NOT_IN

            INSTANCE_LABELS

            The label of the device instance.

            Supported operators : CONTAINS

            MANUFACTURER

            The device manufacturer. For example, "Apple".

            Supported operators : EQUALS , IN , NOT_IN

            MODEL

            The device model, such as "Apple iPad Air 2" or "Google Pixel".

            Supported operators : CONTAINS , EQUALS , IN , NOT_IN

            OS_VERSION

            The operating system version. For example, "10.3.2".

            Supported operators : EQUALS , GREATER_THAN , GREATER_THAN_OR_EQUALS , IN , LESS_THAN , LESS_THAN_OR_EQUALS , NOT_IN

            PLATFORM

            The device platform. Valid values are "ANDROID" or "IOS".

            Supported operators : EQUALS , IN , NOT_IN

            REMOTE_ACCESS_ENABLED

            Whether the device is enabled for remote access. Valid values are "TRUE" or "FALSE".

            Supported operators : EQUALS

            REMOTE_DEBUG_ENABLED

            Whether the device is enabled for remote debugging. Valid values are "TRUE" or "FALSE".

            Supported operators : EQUALS

            This filter will be ignored, as remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

          • operator (string) --

            Specifies how Device Farm compares the rule's attribute to the value. For the operators that are supported by each attribute, see the attribute descriptions.

          • value (string) --

            The rule's value.

      • maxDevices (integer) --

        The number of devices that Device Farm can add to your device pool. Device Farm adds devices that are available and that meet the criteria that you assign for the rules parameter. Depending on how many devices meet these constraints, your device pool might contain fewer devices than the value for this parameter.

        By specifying the maximum number of devices, you can control the costs that you incur by running tests.

Examples

The following example updates the specified device pool with a new name and description. It also enables remote access of devices in the device pool.

response = client.update_device_pool(
    name='NewName',
    # You can get the Amazon Resource Name (ARN) of the device pool by using the list-pools CLI command.
    arn='arn:aws:devicefarm:us-west-2::devicepool:082d10e5-d7d7-48a5-ba5c-12345EXAMPLE',
    description='NewDescription',
    rules=[
        {
            'value': 'True',
            'attribute': 'REMOTE_ACCESS_ENABLED',
            'operator': 'EQUALS',
        },
    ],
)

print(response)

Expected Output:

{
    # Note: you cannot update curated device pools.
    'devicePool': {
    },
    'ResponseMetadata': {
        '...': '...',
    },
}
update_instance_profile(**kwargs)

Updates information about an existing private device instance profile.

See also: AWS API Documentation

Request Syntax

response = client.update_instance_profile(
    arn='string',
    name='string',
    description='string',
    packageCleanup=True|False,
    excludeAppPackagesFromCleanup=[
        'string',
    ],
    rebootAfterUse=True|False
)
Parameters
  • arn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the instance profile.

  • name (string) -- The updated name for your instance profile.
  • description (string) -- The updated description for your instance profile.
  • packageCleanup (boolean) -- The updated choice for whether you want to specify package cleanup. The default value is false for private devices.
  • excludeAppPackagesFromCleanup (list) --

    An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

    The list of packages is only considered if you set packageCleanup to true .

    • (string) --
  • rebootAfterUse (boolean) -- The updated choice for whether you want to reboot the device after use. The default value is true .
Return type

dict

Returns

Response Syntax

{
    'instanceProfile': {
        'arn': 'string',
        'packageCleanup': True|False,
        'excludeAppPackagesFromCleanup': [
            'string',
        ],
        'rebootAfterUse': True|False,
        'name': 'string',
        'description': 'string'
    }
}

Response Structure

  • (dict) --

    • instanceProfile (dict) --

      An object containing information about your instance profile.

      • arn (string) --

        The Amazon Resource Name (ARN) of the instance profile.

      • packageCleanup (boolean) --

        When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.

      • excludeAppPackagesFromCleanup (list) --

        An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

        The list of packages is only considered if you set packageCleanup to true .

        • (string) --
      • rebootAfterUse (boolean) --

        When set to true , Device Farm will reboot the instance after a test run. The default value is true .

      • name (string) --

        The name of the instance profile.

      • description (string) --

        The description of the instance profile.

update_network_profile(**kwargs)

Updates the network profile with specific settings.

See also: AWS API Documentation

Request Syntax

response = client.update_network_profile(
    arn='string',
    name='string',
    description='string',
    type='CURATED'|'PRIVATE',
    uplinkBandwidthBits=123,
    downlinkBandwidthBits=123,
    uplinkDelayMs=123,
    downlinkDelayMs=123,
    uplinkJitterMs=123,
    downlinkJitterMs=123,
    uplinkLossPercent=123,
    downlinkLossPercent=123
)
Parameters
  • arn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the project for which you want to update network profile settings.

  • name (string) -- The name of the network profile about which you are returning information.
  • description (string) -- The description of the network profile about which you are returning information.
  • type (string) -- The type of network profile you wish to return information about. Valid values are listed below.
  • uplinkBandwidthBits (integer) -- The data throughput rate in bits per second, as an integer from 0 to 104857600.
  • downlinkBandwidthBits (integer) -- The data throughput rate in bits per second, as an integer from 0 to 104857600.
  • uplinkDelayMs (integer) -- Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
  • downlinkDelayMs (integer) -- Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.
  • uplinkJitterMs (integer) -- Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
  • downlinkJitterMs (integer) -- Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.
  • uplinkLossPercent (integer) -- Proportion of transmitted packets that fail to arrive from 0 to 100 percent.
  • downlinkLossPercent (integer) -- Proportion of received packets that fail to arrive from 0 to 100 percent.
Return type

dict

Returns

Response Syntax

{
    'networkProfile': {
        'arn': 'string',
        'name': 'string',
        'description': 'string',
        'type': 'CURATED'|'PRIVATE',
        'uplinkBandwidthBits': 123,
        'downlinkBandwidthBits': 123,
        'uplinkDelayMs': 123,
        'downlinkDelayMs': 123,
        'uplinkJitterMs': 123,
        'downlinkJitterMs': 123,
        'uplinkLossPercent': 123,
        'downlinkLossPercent': 123
    }
}

Response Structure

  • (dict) --

    • networkProfile (dict) --

      A list of the available network profiles.

      • arn (string) --

        The Amazon Resource Name (ARN) of the network profile.

      • name (string) --

        The name of the network profile.

      • description (string) --

        The description of the network profile.

      • type (string) --

        The type of network profile. Valid values are listed below.

      • uplinkBandwidthBits (integer) --

        The data throughput rate in bits per second, as an integer from 0 to 104857600.

      • downlinkBandwidthBits (integer) --

        The data throughput rate in bits per second, as an integer from 0 to 104857600.

      • uplinkDelayMs (integer) --

        Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.

      • downlinkDelayMs (integer) --

        Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.

      • uplinkJitterMs (integer) --

        Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.

      • downlinkJitterMs (integer) --

        Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.

      • uplinkLossPercent (integer) --

        Proportion of transmitted packets that fail to arrive from 0 to 100 percent.

      • downlinkLossPercent (integer) --

        Proportion of received packets that fail to arrive from 0 to 100 percent.

update_project(**kwargs)

Modifies the specified project name, given the project ARN and a new name.

See also: AWS API Documentation

Request Syntax

response = client.update_project(
    arn='string',
    name='string',
    defaultJobTimeoutMinutes=123
)
Parameters
  • arn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the project whose name you wish to update.

  • name (string) -- A string representing the new name of the project that you are updating.
  • defaultJobTimeoutMinutes (integer) -- The number of minutes a test run in the project will execute before it times out.
Return type

dict

Returns

Response Syntax

{
    'project': {
        'arn': 'string',
        'name': 'string',
        'defaultJobTimeoutMinutes': 123,
        'created': datetime(2015, 1, 1)
    }
}

Response Structure

  • (dict) --

    Represents the result of an update project request.

    • project (dict) --

      The project you wish to update.

      • arn (string) --

        The project's ARN.

      • name (string) --

        The project's name.

      • defaultJobTimeoutMinutes (integer) --

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

      • created (datetime) --

        When the project was created.

Examples

The following example updates the specified project with a new name.

response = client.update_project(
    name='NewName',
    # You can get the Amazon Resource Name (ARN) of the project by using the list-projects CLI command.
    arn='arn:aws:devicefarm:us-west-2:183774035805:project:8f75187d-101e-4625-accc-12345EXAMPLE',
)

print(response)

Expected Output:

{
    'project': {
        'name': 'NewName',
        'arn': 'arn:aws:devicefarm:us-west-2:183774035805:project:8f75187d-101e-4625-accc-12345EXAMPLE',
        'created': datetime(2015, 11, 24, 21, 31, 49, 1, 328, 0),
    },
    'ResponseMetadata': {
        '...': '...',
    },
}
update_upload(**kwargs)

Update an uploaded test specification (test spec).

See also: AWS API Documentation

Request Syntax

response = client.update_upload(
    arn='string',
    name='string',
    contentType='string',
    editContent=True|False
)
Parameters
  • arn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the uploaded test spec.

  • name (string) -- The upload's test spec file name. The name should not contain the '/' character. The test spec file name must end with the .yaml or .yml file extension.
  • contentType (string) -- The upload's content type (for example, "application/x-yaml").
  • editContent (boolean) -- Set to true if the YAML file has changed and needs to be updated; otherwise, set to false.
Return type

dict

Returns

Response Syntax

{
    'upload': {
        'arn': 'string',
        'name': 'string',
        'created': datetime(2015, 1, 1),
        'type': 'ANDROID_APP'|'IOS_APP'|'WEB_APP'|'EXTERNAL_DATA'|'APPIUM_JAVA_JUNIT_TEST_PACKAGE'|'APPIUM_JAVA_TESTNG_TEST_PACKAGE'|'APPIUM_PYTHON_TEST_PACKAGE'|'APPIUM_NODE_TEST_PACKAGE'|'APPIUM_RUBY_TEST_PACKAGE'|'APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE'|'APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE'|'APPIUM_WEB_PYTHON_TEST_PACKAGE'|'APPIUM_WEB_NODE_TEST_PACKAGE'|'APPIUM_WEB_RUBY_TEST_PACKAGE'|'CALABASH_TEST_PACKAGE'|'INSTRUMENTATION_TEST_PACKAGE'|'UIAUTOMATION_TEST_PACKAGE'|'UIAUTOMATOR_TEST_PACKAGE'|'XCTEST_TEST_PACKAGE'|'XCTEST_UI_TEST_PACKAGE'|'APPIUM_JAVA_JUNIT_TEST_SPEC'|'APPIUM_JAVA_TESTNG_TEST_SPEC'|'APPIUM_PYTHON_TEST_SPEC'|'APPIUM_NODE_TEST_SPEC'|'APPIUM_RUBY_TEST_SPEC'|'APPIUM_WEB_JAVA_JUNIT_TEST_SPEC'|'APPIUM_WEB_JAVA_TESTNG_TEST_SPEC'|'APPIUM_WEB_PYTHON_TEST_SPEC'|'APPIUM_WEB_NODE_TEST_SPEC'|'APPIUM_WEB_RUBY_TEST_SPEC'|'INSTRUMENTATION_TEST_SPEC'|'XCTEST_UI_TEST_SPEC',
        'status': 'INITIALIZED'|'PROCESSING'|'SUCCEEDED'|'FAILED',
        'url': 'string',
        'metadata': 'string',
        'contentType': 'string',
        'message': 'string',
        'category': 'CURATED'|'PRIVATE'
    }
}

Response Structure

  • (dict) --

    • upload (dict) --

      A test spec uploaded to Device Farm.

      • arn (string) --

        The upload's ARN.

      • name (string) --

        The upload's file name.

      • created (datetime) --

        When the upload was created.

      • type (string) --

        The upload's type.

        Must be one of the following values:

        • ANDROID_APP: An Android upload.
        • IOS_APP: An iOS upload.
        • WEB_APP: A web application upload.
        • EXTERNAL_DATA: An external data upload.
        • APPIUM_JAVA_JUNIT_TEST_PACKAGE: An Appium Java JUnit test package upload.
        • APPIUM_JAVA_TESTNG_TEST_PACKAGE: An Appium Java TestNG test package upload.
        • APPIUM_PYTHON_TEST_PACKAGE: An Appium Python test package upload.
        • APPIUM_NODE_TEST_PACKAGE: An Appium Node.js test package upload.
        • APPIUM_RUBY_TEST_PACKAGE: An Appium Ruby test package upload.
        • APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE: An Appium Java JUnit test package upload for web apps.
        • APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE: An Appium Java TestNG test package upload for web apps.
        • APPIUM_WEB_PYTHON_TEST_PACKAGE: An Appium Python test package upload for web apps.
        • APPIUM_WEB_NODE_TEST_PACKAGE: An Appium Node.js test package upload for web apps.
        • APPIUM_WEB_RUBY_TEST_PACKAGE: An Appium Ruby test package upload for web apps.
        • CALABASH_TEST_PACKAGE: A Calabash test package upload.
        • INSTRUMENTATION_TEST_PACKAGE: An instrumentation upload.
        • UIAUTOMATION_TEST_PACKAGE: A uiautomation test package upload.
        • UIAUTOMATOR_TEST_PACKAGE: A uiautomator test package upload.
        • XCTEST_TEST_PACKAGE: An Xcode test package upload.
        • XCTEST_UI_TEST_PACKAGE: An Xcode UI test package upload.
        • APPIUM_JAVA_JUNIT_TEST_SPEC: An Appium Java JUnit test spec upload.
        • APPIUM_JAVA_TESTNG_TEST_SPEC: An Appium Java TestNG test spec upload.
        • APPIUM_PYTHON_TEST_SPEC: An Appium Python test spec upload.
        • APPIUM_NODE_TEST_SPEC: An Appium Node.js test spec upload.
        • APPIUM_RUBY_TEST_SPEC: An Appium Ruby test spec upload.
        • APPIUM_WEB_JAVA_JUNIT_TEST_SPEC: An Appium Java JUnit test spec upload for a web app.
        • APPIUM_WEB_JAVA_TESTNG_TEST_SPEC: An Appium Java TestNG test spec upload for a web app.
        • APPIUM_WEB_PYTHON_TEST_SPEC: An Appium Python test spec upload for a web app.
        • APPIUM_WEB_NODE_TEST_SPEC: An Appium Node.js test spec upload for a web app.
        • APPIUM_WEB_RUBY_TEST_SPEC: An Appium Ruby test spec upload for a web app.
        • INSTRUMENTATION_TEST_SPEC: An instrumentation test spec upload.
        • XCTEST_UI_TEST_SPEC: An Xcode UI test spec upload.
      • status (string) --

        The upload's status.

        Must be one of the following values:

        • FAILED: A failed status.
        • INITIALIZED: An initialized status.
        • PROCESSING: A processing status.
        • SUCCEEDED: A succeeded status.
      • url (string) --

        The pre-signed Amazon S3 URL that was used to store a file through a corresponding PUT request.

      • metadata (string) --

        The upload's metadata. For example, for Android, this contains information that is parsed from the manifest and is displayed in the AWS Device Farm console after the associated app is uploaded.

      • contentType (string) --

        The upload's content type (for example, "application/octet-stream").

      • message (string) --

        A message about the upload's result.

      • category (string) --

        The upload's category. Allowed values include:

        • CURATED: An upload managed by AWS Device Farm.
        • PRIVATE: An upload managed by the AWS Device Farm customer.

update_vpce_configuration(**kwargs)

Updates information about an existing Amazon Virtual Private Cloud (VPC) endpoint configuration.

See also: AWS API Documentation

Request Syntax

response = client.update_vpce_configuration(
    arn='string',
    vpceConfigurationName='string',
    vpceServiceName='string',
    serviceDnsName='string',
    vpceConfigurationDescription='string'
)
Parameters
  • arn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the VPC endpoint configuration you want to update.

  • vpceConfigurationName (string) -- The friendly name you give to your VPC endpoint configuration, to manage your configurations more easily.
  • vpceServiceName (string) -- The name of the VPC endpoint service running inside your AWS account that you want Device Farm to test.
  • serviceDnsName (string) -- The DNS (domain) name used to connect to your private service in your Amazon VPC. The DNS name must not already be in use on the Internet.
  • vpceConfigurationDescription (string) -- An optional description, providing more details about your VPC endpoint configuration.
Return type

dict

Returns

Response Syntax

{
    'vpceConfiguration': {
        'arn': 'string',
        'vpceConfigurationName': 'string',
        'vpceServiceName': 'string',
        'serviceDnsName': 'string',
        'vpceConfigurationDescription': 'string'
    }
}

Response Structure

  • (dict) --

    • vpceConfiguration (dict) --

      An object containing information about your VPC endpoint configuration.

      • arn (string) --

        The Amazon Resource Name (ARN) of the VPC endpoint configuration.

      • vpceConfigurationName (string) --

        The friendly name you give to your VPC endpoint configuration, to manage your configurations more easily.

      • vpceServiceName (string) --

        The name of the VPC endpoint service running inside your AWS account that you want Device Farm to test.

      • serviceDnsName (string) --

        The DNS name that maps to the private IP address of the service you want to access.

      • vpceConfigurationDescription (string) --

        An optional description, providing more details about your VPC endpoint configuration.

Paginators

The available paginators are:

class DeviceFarm.Paginator.GetOfferingStatus
paginator = client.get_paginator('get_offering_status')
paginate(**kwargs)

Creates an iterator that will paginate through responses from DeviceFarm.Client.get_offering_status().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters
PaginationConfig (dict) --

A dictionary that provides parameters to control pagination.

  • MaxItems (integer) --

    The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

  • StartingToken (string) --

    A token to specify where to start paginating. This is the NextToken from a previous response.

Return type
dict
Returns
Response Syntax
{
    'current': {
        'string': {
            'type': 'PURCHASE'|'RENEW'|'SYSTEM',
            'offering': {
                'id': 'string',
                'description': 'string',
                'type': 'RECURRING',
                'platform': 'ANDROID'|'IOS',
                'recurringCharges': [
                    {
                        'cost': {
                            'amount': 123.0,
                            'currencyCode': 'USD'
                        },
                        'frequency': 'MONTHLY'
                    },
                ]
            },
            'quantity': 123,
            'effectiveOn': datetime(2015, 1, 1)
        }
    },
    'nextPeriod': {
        'string': {
            'type': 'PURCHASE'|'RENEW'|'SYSTEM',
            'offering': {
                'id': 'string',
                'description': 'string',
                'type': 'RECURRING',
                'platform': 'ANDROID'|'IOS',
                'recurringCharges': [
                    {
                        'cost': {
                            'amount': 123.0,
                            'currencyCode': 'USD'
                        },
                        'frequency': 'MONTHLY'
                    },
                ]
            },
            'quantity': 123,
            'effectiveOn': datetime(2015, 1, 1)
        }
    },
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Returns the status result for a device offering.

    • current (dict) --

      When specified, gets the offering status for the current period.

      • (string) --
        • (dict) --

          The status of the offering.

          • type (string) --

            The type specified for the offering status.

          • offering (dict) --

            Represents the metadata of an offering status.

            • id (string) --

              The ID that corresponds to a device offering.

            • description (string) --

              A string describing the offering.

            • type (string) --

              The type of offering (e.g., "RECURRING") for a device.

            • platform (string) --

              The platform of the device (e.g., ANDROID or IOS).

            • recurringCharges (list) --

              Specifies whether there are recurring charges for the offering.

              • (dict) --

                Specifies whether charges for devices will be recurring.

                • cost (dict) --

                  The cost of the recurring charge.

                  • amount (float) --

                    The numerical amount of an offering or transaction.

                  • currencyCode (string) --

                    The currency code of a monetary amount. For example, USD means "U.S. dollars."

                • frequency (string) --

                  The frequency in which charges will recur.

          • quantity (integer) --

            The number of available devices in the offering.

          • effectiveOn (datetime) --

            The date on which the offering is effective.

    • nextPeriod (dict) --

      When specified, gets the offering status for the next period.

      • (string) --
        • (dict) --

          The status of the offering.

          • type (string) --

            The type specified for the offering status.

          • offering (dict) --

            Represents the metadata of an offering status.

            • id (string) --

              The ID that corresponds to a device offering.

            • description (string) --

              A string describing the offering.

            • type (string) --

              The type of offering (e.g., "RECURRING") for a device.

            • platform (string) --

              The platform of the device (e.g., ANDROID or IOS).

            • recurringCharges (list) --

              Specifies whether there are recurring charges for the offering.

              • (dict) --

                Specifies whether charges for devices will be recurring.

                • cost (dict) --

                  The cost of the recurring charge.

                  • amount (float) --

                    The numerical amount of an offering or transaction.

                  • currencyCode (string) --

                    The currency code of a monetary amount. For example, USD means "U.S. dollars."

                • frequency (string) --

                  The frequency in which charges will recur.

          • quantity (integer) --

            The number of available devices in the offering.

          • effectiveOn (datetime) --

            The date on which the offering is effective.

    • NextToken (string) --

      A token to resume pagination.

class DeviceFarm.Paginator.ListArtifacts
paginator = client.get_paginator('list_artifacts')
paginate(**kwargs)

Creates an iterator that will paginate through responses from DeviceFarm.Client.list_artifacts().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    arn='string',
    type='SCREENSHOT'|'FILE'|'LOG',
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • arn (string) --

    [REQUIRED]

    The Run, Job, Suite, or Test ARN.

  • type (string) --

    [REQUIRED]

    The artifacts' type.

    Allowed values include:

    • FILE: The artifacts are files.
    • LOG: The artifacts are logs.
    • SCREENSHOT: The artifacts are screenshots.
  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'artifacts': [
        {
            'arn': 'string',
            'name': 'string',
            'type': 'UNKNOWN'|'SCREENSHOT'|'DEVICE_LOG'|'MESSAGE_LOG'|'VIDEO_LOG'|'RESULT_LOG'|'SERVICE_LOG'|'WEBKIT_LOG'|'INSTRUMENTATION_OUTPUT'|'EXERCISER_MONKEY_OUTPUT'|'CALABASH_JSON_OUTPUT'|'CALABASH_PRETTY_OUTPUT'|'CALABASH_STANDARD_OUTPUT'|'CALABASH_JAVA_XML_OUTPUT'|'AUTOMATION_OUTPUT'|'APPIUM_SERVER_OUTPUT'|'APPIUM_JAVA_OUTPUT'|'APPIUM_JAVA_XML_OUTPUT'|'APPIUM_PYTHON_OUTPUT'|'APPIUM_PYTHON_XML_OUTPUT'|'EXPLORER_EVENT_LOG'|'EXPLORER_SUMMARY_LOG'|'APPLICATION_CRASH_REPORT'|'XCTEST_LOG'|'VIDEO'|'CUSTOMER_ARTIFACT'|'CUSTOMER_ARTIFACT_LOG'|'TESTSPEC_OUTPUT',
            'extension': 'string',
            'url': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the result of a list artifacts operation.

    • artifacts (list) --

      Information about the artifacts.

      • (dict) --

        Represents the output of a test. Examples of artifacts include logs and screenshots.

        • arn (string) --

          The artifact's ARN.

        • name (string) --

          The artifact's name.

        • type (string) --

          The artifact's type.

          Allowed values include the following:

          • UNKNOWN: An unknown type.
          • SCREENSHOT: The screenshot type.
          • DEVICE_LOG: The device log type.
          • MESSAGE_LOG: The message log type.
          • VIDEO_LOG: The video log type.
          • RESULT_LOG: The result log type.
          • SERVICE_LOG: The service log type.
          • WEBKIT_LOG: The web kit log type.
          • INSTRUMENTATION_OUTPUT: The instrumentation type.
          • EXERCISER_MONKEY_OUTPUT: For Android, the artifact (log) generated by an Android fuzz test.
          • CALABASH_JSON_OUTPUT: The Calabash JSON output type.
          • CALABASH_PRETTY_OUTPUT: The Calabash pretty output type.
          • CALABASH_STANDARD_OUTPUT: The Calabash standard output type.
          • CALABASH_JAVA_XML_OUTPUT: The Calabash Java XML output type.
          • AUTOMATION_OUTPUT: The automation output type.
          • APPIUM_SERVER_OUTPUT: The Appium server output type.
          • APPIUM_JAVA_OUTPUT: The Appium Java output type.
          • APPIUM_JAVA_XML_OUTPUT: The Appium Java XML output type.
          • APPIUM_PYTHON_OUTPUT: The Appium Python output type.
          • APPIUM_PYTHON_XML_OUTPUT: The Appium Python XML output type.
          • EXPLORER_EVENT_LOG: The Explorer event log output type.
          • EXPLORER_SUMMARY_LOG: The Explorer summary log output type.
          • APPLICATION_CRASH_REPORT: The application crash report output type.
          • XCTEST_LOG: The Xcode test output type.
          • VIDEO: The Video output type.
          • CUSTOMER_ARTIFACT:The Customer Artifact output type.
          • CUSTOMER_ARTIFACT_LOG: The Customer Artifact Log output type.
          • TESTSPEC_OUTPUT: The Test Spec Output type.
        • extension (string) --

          The artifact's file extension.

        • url (string) --

          The pre-signed Amazon S3 URL that can be used with a corresponding GET request to download the artifact's file.

    • NextToken (string) --

      A token to resume pagination.

class DeviceFarm.Paginator.ListDeviceInstances
paginator = client.get_paginator('list_device_instances')
paginate(**kwargs)

Creates an iterator that will paginate through responses from DeviceFarm.Client.list_device_instances().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
PaginationConfig (dict) --

A dictionary that provides parameters to control pagination.

  • MaxItems (integer) --

    The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

  • PageSize (integer) --

    The size of each page.

  • StartingToken (string) --

    A token to specify where to start paginating. This is the NextToken from a previous response.

Return type
dict
Returns
Response Syntax
{
    'deviceInstances': [
        {
            'arn': 'string',
            'deviceArn': 'string',
            'labels': [
                'string',
            ],
            'status': 'IN_USE'|'PREPARING'|'AVAILABLE'|'NOT_AVAILABLE',
            'udid': 'string',
            'instanceProfile': {
                'arn': 'string',
                'packageCleanup': True|False,
                'excludeAppPackagesFromCleanup': [
                    'string',
                ],
                'rebootAfterUse': True|False,
                'name': 'string',
                'description': 'string'
            }
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --
    • deviceInstances (list) --

      An object containing information about your device instances.

      • (dict) --

        Represents the device instance.

        • arn (string) --

          The Amazon Resource Name (ARN) of the device instance.

        • deviceArn (string) --

          The Amazon Resource Name (ARN) of the device.

        • labels (list) --

          An array of strings describing the device instance.

          • (string) --
        • status (string) --

          The status of the device instance. Valid values are listed below.

        • udid (string) --

          Unique device identifier for the device instance.

        • instanceProfile (dict) --

          A object containing information about the instance profile.

          • arn (string) --

            The Amazon Resource Name (ARN) of the instance profile.

          • packageCleanup (boolean) --

            When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.

          • excludeAppPackagesFromCleanup (list) --

            An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

            The list of packages is only considered if you set packageCleanup to true .

            • (string) --
          • rebootAfterUse (boolean) --

            When set to true , Device Farm will reboot the instance after a test run. The default value is true .

          • name (string) --

            The name of the instance profile.

          • description (string) --

            The description of the instance profile.

    • NextToken (string) --

      A token to resume pagination.

class DeviceFarm.Paginator.ListDevicePools
paginator = client.get_paginator('list_device_pools')
paginate(**kwargs)

Creates an iterator that will paginate through responses from DeviceFarm.Client.list_device_pools().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    arn='string',
    type='CURATED'|'PRIVATE',
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • arn (string) --

    [REQUIRED]

    The project ARN.

  • type (string) --

    The device pools' type.

    Allowed values include:

    • CURATED: A device pool that is created and managed by AWS Device Farm.
    • PRIVATE: A device pool that is created and managed by the device pool developer.
  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'devicePools': [
        {
            'arn': 'string',
            'name': 'string',
            'description': 'string',
            'type': 'CURATED'|'PRIVATE',
            'rules': [
                {
                    'attribute': 'ARN'|'PLATFORM'|'FORM_FACTOR'|'MANUFACTURER'|'REMOTE_ACCESS_ENABLED'|'REMOTE_DEBUG_ENABLED'|'APPIUM_VERSION'|'INSTANCE_ARN'|'INSTANCE_LABELS'|'FLEET_TYPE'|'OS_VERSION'|'MODEL'|'AVAILABILITY',
                    'operator': 'EQUALS'|'LESS_THAN'|'LESS_THAN_OR_EQUALS'|'GREATER_THAN'|'GREATER_THAN_OR_EQUALS'|'IN'|'NOT_IN'|'CONTAINS',
                    'value': 'string'
                },
            ],
            'maxDevices': 123
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the result of a list device pools request.

    • devicePools (list) --

      Information about the device pools.

      • (dict) --

        Represents a collection of device types.

        • arn (string) --

          The device pool's ARN.

        • name (string) --

          The device pool's name.

        • description (string) --

          The device pool's description.

        • type (string) --

          The device pool's type.

          Allowed values include:

          • CURATED: A device pool that is created and managed by AWS Device Farm.
          • PRIVATE: A device pool that is created and managed by the device pool developer.
        • rules (list) --

          Information about the device pool's rules.

          • (dict) --

            Represents a condition for a device pool.

            • attribute (string) --

              The rule's stringified attribute. For example, specify the value as "\"abc\"" .

              The supported operators for each attribute are provided in the following list.

              APPIUM_VERSION

              The Appium version for the test.

              Supported operators : CONTAINS

              ARN

              The Amazon Resource Name (ARN) of the device. For example, "arn:aws:devicefarm:us-west-2::device:12345Example".

              Supported operators : EQUALS , IN , NOT_IN

              AVAILABILITY

              The current availability of the device. Valid values are "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".

              Supported operators : EQUALS

              FLEET_TYPE

              The fleet type. Valid values are "PUBLIC" or "PRIVATE".

              Supported operators : EQUALS

              FORM_FACTOR

              The device form factor. Valid values are "PHONE" or "TABLET".

              Supported operators : EQUALS , IN , NOT_IN

              INSTANCE_ARN

              The Amazon Resource Name (ARN) of the device instance.

              Supported operators : IN , NOT_IN

              INSTANCE_LABELS

              The label of the device instance.

              Supported operators : CONTAINS

              MANUFACTURER

              The device manufacturer. For example, "Apple".

              Supported operators : EQUALS , IN , NOT_IN

              MODEL

              The device model, such as "Apple iPad Air 2" or "Google Pixel".

              Supported operators : CONTAINS , EQUALS , IN , NOT_IN

              OS_VERSION

              The operating system version. For example, "10.3.2".

              Supported operators : EQUALS , GREATER_THAN , GREATER_THAN_OR_EQUALS , IN , LESS_THAN , LESS_THAN_OR_EQUALS , NOT_IN

              PLATFORM

              The device platform. Valid values are "ANDROID" or "IOS".

              Supported operators : EQUALS , IN , NOT_IN

              REMOTE_ACCESS_ENABLED

              Whether the device is enabled for remote access. Valid values are "TRUE" or "FALSE".

              Supported operators : EQUALS

              REMOTE_DEBUG_ENABLED

              Whether the device is enabled for remote debugging. Valid values are "TRUE" or "FALSE".

              Supported operators : EQUALS

              This filter will be ignored, as remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

            • operator (string) --

              Specifies how Device Farm compares the rule's attribute to the value. For the operators that are supported by each attribute, see the attribute descriptions.

            • value (string) --

              The rule's value.

        • maxDevices (integer) --

          The number of devices that Device Farm can add to your device pool. Device Farm adds devices that are available and that meet the criteria that you assign for the rules parameter. Depending on how many devices meet these constraints, your device pool might contain fewer devices than the value for this parameter.

          By specifying the maximum number of devices, you can control the costs that you incur by running tests.

    • NextToken (string) --

      A token to resume pagination.

class DeviceFarm.Paginator.ListDevices
paginator = client.get_paginator('list_devices')
paginate(**kwargs)

Creates an iterator that will paginate through responses from DeviceFarm.Client.list_devices().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    arn='string',
    filters=[
        {
            'attribute': 'ARN'|'PLATFORM'|'OS_VERSION'|'MODEL'|'AVAILABILITY'|'FORM_FACTOR'|'MANUFACTURER'|'REMOTE_ACCESS_ENABLED'|'REMOTE_DEBUG_ENABLED'|'INSTANCE_ARN'|'INSTANCE_LABELS'|'FLEET_TYPE',
            'operator': 'EQUALS'|'LESS_THAN'|'LESS_THAN_OR_EQUALS'|'GREATER_THAN'|'GREATER_THAN_OR_EQUALS'|'IN'|'NOT_IN'|'CONTAINS',
            'values': [
                'string',
            ]
        },
    ],
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • arn (string) -- The Amazon Resource Name (ARN) of the project.
  • filters (list) --

    Used to select a set of devices. A filter is made up of an attribute, an operator, and one or more values.

    • Attribute: The aspect of a device such as platform or model used as the selection criteria in a device filter. Allowed values include:
      • ARN: The Amazon Resource Name (ARN) of the device. For example, "arn:aws:devicefarm:us-west-2::device:12345Example".
      • PLATFORM: The device platform. Valid values are "ANDROID" or "IOS".
      • OS_VERSION: The operating system version. For example, "10.3.2".
      • MODEL: The device model. For example, "iPad 5th Gen".
      • AVAILABILITY: The current availability of the device. Valid values are "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".
      • FORM_FACTOR: The device form factor. Valid values are "PHONE" or "TABLET".
      • MANUFACTURER: The device manufacturer. For example, "Apple".
      • REMOTE_ACCESS_ENABLED: Whether the device is enabled for remote access. Valid values are "TRUE" or "FALSE".
      • REMOTE_DEBUG_ENABLED: Whether the device is enabled for remote debugging. Valid values are "TRUE" or "FALSE". This attribute will be ignored, as remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .
      • INSTANCE_ARN: The Amazon Resource Name (ARN) of the device instance.
      • INSTANCE_LABELS: The label of the device instance.
      • FLEET_TYPE: The fleet type. Valid values are "PUBLIC" or "PRIVATE".
    • Operator: The filter operator.
      • The EQUALS operator is available for every attribute except INSTANCE_LABELS.
      • The CONTAINS operator is available for the INSTANCE_LABELS and MODEL attributes.
      • The IN and NOT_IN operators are available for the ARN, OS_VERSION, MODEL, MANUFACTURER, and INSTANCE_ARN attributes.
      • The LESS_THAN, GREATER_THAN, LESS_THAN_OR_EQUALS, and GREATER_THAN_OR_EQUALS operators are also available for the OS_VERSION attribute.
    • Values: An array of one or more filter values.
      • The IN and NOT_IN operators take a values array that has one or more elements.
      • The other operators require an array with a single element.
      • In a request, the AVAILABILITY attribute takes "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE" as values.
    • (dict) --

      Represents a device filter used to select a set of devices to be included in a test run. This data structure is passed in as the deviceSelectionConfiguration parameter to ScheduleRun. For an example of the JSON request syntax, see ScheduleRun .

      It is also passed in as the filters parameter to ListDevices. For an example of the JSON request syntax, see ListDevices .

      • attribute (string) --

        The aspect of a device such as platform or model used as the selection criteria in a device filter.

        The supported operators for each attribute are provided in the following list.

        ARN

        The Amazon Resource Name (ARN) of the device. For example, "arn:aws:devicefarm:us-west-2::device:12345Example".

        Supported operators : EQUALS , IN , NOT_IN
        PLATFORM

        The device platform. Valid values are "ANDROID" or "IOS".

        Supported operators : EQUALS
        OS_VERSION

        The operating system version. For example, "10.3.2".

        Supported operators : EQUALS , GREATER_THAN , GREATER_THAN_OR_EQUALS , IN , LESS_THAN , LESS_THAN_OR_EQUALS , NOT_IN
        MODEL

        The device model. For example, "iPad 5th Gen".

        Supported operators : CONTAINS , EQUALS , IN , NOT_IN
        AVAILABILITY

        The current availability of the device. Valid values are "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".

        Supported operators : EQUALS
        FORM_FACTOR

        The device form factor. Valid values are "PHONE" or "TABLET".

        Supported operators : EQUALS
        MANUFACTURER

        The device manufacturer. For example, "Apple".

        Supported operators : EQUALS , IN , NOT_IN
        REMOTE_ACCESS_ENABLED

        Whether the device is enabled for remote access. Valid values are "TRUE" or "FALSE".

        Supported operators : EQUALS
        REMOTE_DEBUG_ENABLED

        Ignored. Whether the device is enabled for remote debugging. Valid values are "TRUE" or "FALSE".

        Supported operators : EQUALS

        This filter will be ignored, as remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

        INSTANCE_ARN

        The Amazon Resource Name (ARN) of the device instance.

        Supported operators : EQUALS , IN , NOT_IN
        INSTANCE_LABELS

        The label of the device instance.

        Supported operators : CONTAINS
        FLEET_TYPE

        The fleet type. Valid values are "PUBLIC" or "PRIVATE".

        Supported operators : EQUALS
      • operator (string) --

        Specifies how Device Farm compares the filter's attribute to the value. For the operators that are supported by each attribute, see the attribute descriptions.

      • values (list) --

        An array of one or more filter values used in a device filter.

        Operator Values
        • The IN and NOT_IN operators can take a values array that has more than one element.
        • The other operators require an array with a single element.
        Attribute Values
        • The PLATFORM attribute can be set to "ANDROID" or "IOS".
        • The AVAILABILITY attribute can be set to "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".
        • The FORM_FACTOR attribute can be set to "PHONE" or "TABLET".
        • The FLEET_TYPE attribute can be set to "PUBLIC" or "PRIVATE".
        • (string) --
  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'devices': [
        {
            'arn': 'string',
            'name': 'string',
            'manufacturer': 'string',
            'model': 'string',
            'modelId': 'string',
            'formFactor': 'PHONE'|'TABLET',
            'platform': 'ANDROID'|'IOS',
            'os': 'string',
            'cpu': {
                'frequency': 'string',
                'architecture': 'string',
                'clock': 123.0
            },
            'resolution': {
                'width': 123,
                'height': 123
            },
            'heapSize': 123,
            'memory': 123,
            'image': 'string',
            'carrier': 'string',
            'radio': 'string',
            'remoteAccessEnabled': True|False,
            'remoteDebugEnabled': True|False,
            'fleetType': 'string',
            'fleetName': 'string',
            'instances': [
                {
                    'arn': 'string',
                    'deviceArn': 'string',
                    'labels': [
                        'string',
                    ],
                    'status': 'IN_USE'|'PREPARING'|'AVAILABLE'|'NOT_AVAILABLE',
                    'udid': 'string',
                    'instanceProfile': {
                        'arn': 'string',
                        'packageCleanup': True|False,
                        'excludeAppPackagesFromCleanup': [
                            'string',
                        ],
                        'rebootAfterUse': True|False,
                        'name': 'string',
                        'description': 'string'
                    }
                },
            ],
            'availability': 'TEMPORARY_NOT_AVAILABLE'|'BUSY'|'AVAILABLE'|'HIGHLY_AVAILABLE'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the result of a list devices operation.

    • devices (list) --

      Information about the devices.

      • (dict) --

        Represents a device type that an app is tested against.

        • arn (string) --

          The device's ARN.

        • name (string) --

          The device's display name.

        • manufacturer (string) --

          The device's manufacturer name.

        • model (string) --

          The device's model name.

        • modelId (string) --

          The device's model ID.

        • formFactor (string) --

          The device's form factor.

          Allowed values include:

          • PHONE: The phone form factor.
          • TABLET: The tablet form factor.
        • platform (string) --

          The device's platform.

          Allowed values include:

          • ANDROID: The Android platform.
          • IOS: The iOS platform.
        • os (string) --

          The device's operating system type.

        • cpu (dict) --

          Information about the device's CPU.

          • frequency (string) --

            The CPU's frequency.

          • architecture (string) --

            The CPU's architecture, for example x86 or ARM.

          • clock (float) --

            The clock speed of the device's CPU, expressed in hertz (Hz). For example, a 1.2 GHz CPU is expressed as 1200000000.

        • resolution (dict) --

          The resolution of the device.

          • width (integer) --

            The screen resolution's width, expressed in pixels.

          • height (integer) --

            The screen resolution's height, expressed in pixels.

        • heapSize (integer) --

          The device's heap size, expressed in bytes.

        • memory (integer) --

          The device's total memory size, expressed in bytes.

        • image (string) --

          The device's image name.

        • carrier (string) --

          The device's carrier.

        • radio (string) --

          The device's radio.

        • remoteAccessEnabled (boolean) --

          Specifies whether remote access has been enabled for the specified device.

        • remoteDebugEnabled (boolean) --

          This flag is set to true if remote debugging is enabled for the device.

          Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

        • fleetType (string) --

          The type of fleet to which this device belongs. Possible values for fleet type are PRIVATE and PUBLIC.

        • fleetName (string) --

          The name of the fleet to which this device belongs.

        • instances (list) --

          The instances belonging to this device.

          • (dict) --

            Represents the device instance.

            • arn (string) --

              The Amazon Resource Name (ARN) of the device instance.

            • deviceArn (string) --

              The Amazon Resource Name (ARN) of the device.

            • labels (list) --

              An array of strings describing the device instance.

              • (string) --
            • status (string) --

              The status of the device instance. Valid values are listed below.

            • udid (string) --

              Unique device identifier for the device instance.

            • instanceProfile (dict) --

              A object containing information about the instance profile.

              • arn (string) --

                The Amazon Resource Name (ARN) of the instance profile.

              • packageCleanup (boolean) --

                When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.

              • excludeAppPackagesFromCleanup (list) --

                An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

                The list of packages is only considered if you set packageCleanup to true .

                • (string) --
              • rebootAfterUse (boolean) --

                When set to true , Device Farm will reboot the instance after a test run. The default value is true .

              • name (string) --

                The name of the instance profile.

              • description (string) --

                The description of the instance profile.

        • availability (string) --

          Reflects how likely a device will be available for a test run. It is currently available in the ListDevices and GetDevice API methods.

    • NextToken (string) --

      A token to resume pagination.

class DeviceFarm.Paginator.ListInstanceProfiles
paginator = client.get_paginator('list_instance_profiles')
paginate(**kwargs)

Creates an iterator that will paginate through responses from DeviceFarm.Client.list_instance_profiles().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
PaginationConfig (dict) --

A dictionary that provides parameters to control pagination.

  • MaxItems (integer) --

    The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

  • PageSize (integer) --

    The size of each page.

  • StartingToken (string) --

    A token to specify where to start paginating. This is the NextToken from a previous response.

Return type
dict
Returns
Response Syntax
{
    'instanceProfiles': [
        {
            'arn': 'string',
            'packageCleanup': True|False,
            'excludeAppPackagesFromCleanup': [
                'string',
            ],
            'rebootAfterUse': True|False,
            'name': 'string',
            'description': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --
    • instanceProfiles (list) --

      An object containing information about your instance profiles.

      • (dict) --

        Represents the instance profile.

        • arn (string) --

          The Amazon Resource Name (ARN) of the instance profile.

        • packageCleanup (boolean) --

          When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.

        • excludeAppPackagesFromCleanup (list) --

          An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

          The list of packages is only considered if you set packageCleanup to true .

          • (string) --
        • rebootAfterUse (boolean) --

          When set to true , Device Farm will reboot the instance after a test run. The default value is true .

        • name (string) --

          The name of the instance profile.

        • description (string) --

          The description of the instance profile.

    • NextToken (string) --

      A token to resume pagination.

class DeviceFarm.Paginator.ListJobs
paginator = client.get_paginator('list_jobs')
paginate(**kwargs)

Creates an iterator that will paginate through responses from DeviceFarm.Client.list_jobs().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    arn='string',
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • arn (string) --

    [REQUIRED]

    The run's Amazon Resource Name (ARN).

  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'jobs': [
        {
            'arn': 'string',
            'name': 'string',
            'type': 'BUILTIN_FUZZ'|'BUILTIN_EXPLORER'|'WEB_PERFORMANCE_PROFILE'|'APPIUM_JAVA_JUNIT'|'APPIUM_JAVA_TESTNG'|'APPIUM_PYTHON'|'APPIUM_NODE'|'APPIUM_RUBY'|'APPIUM_WEB_JAVA_JUNIT'|'APPIUM_WEB_JAVA_TESTNG'|'APPIUM_WEB_PYTHON'|'APPIUM_WEB_NODE'|'APPIUM_WEB_RUBY'|'CALABASH'|'INSTRUMENTATION'|'UIAUTOMATION'|'UIAUTOMATOR'|'XCTEST'|'XCTEST_UI'|'REMOTE_ACCESS_RECORD'|'REMOTE_ACCESS_REPLAY',
            'created': datetime(2015, 1, 1),
            'status': 'PENDING'|'PENDING_CONCURRENCY'|'PENDING_DEVICE'|'PROCESSING'|'SCHEDULING'|'PREPARING'|'RUNNING'|'COMPLETED'|'STOPPING',
            'result': 'PENDING'|'PASSED'|'WARNED'|'FAILED'|'SKIPPED'|'ERRORED'|'STOPPED',
            'started': datetime(2015, 1, 1),
            'stopped': datetime(2015, 1, 1),
            'counters': {
                'total': 123,
                'passed': 123,
                'failed': 123,
                'warned': 123,
                'errored': 123,
                'stopped': 123,
                'skipped': 123
            },
            'message': 'string',
            'device': {
                'arn': 'string',
                'name': 'string',
                'manufacturer': 'string',
                'model': 'string',
                'modelId': 'string',
                'formFactor': 'PHONE'|'TABLET',
                'platform': 'ANDROID'|'IOS',
                'os': 'string',
                'cpu': {
                    'frequency': 'string',
                    'architecture': 'string',
                    'clock': 123.0
                },
                'resolution': {
                    'width': 123,
                    'height': 123
                },
                'heapSize': 123,
                'memory': 123,
                'image': 'string',
                'carrier': 'string',
                'radio': 'string',
                'remoteAccessEnabled': True|False,
                'remoteDebugEnabled': True|False,
                'fleetType': 'string',
                'fleetName': 'string',
                'instances': [
                    {
                        'arn': 'string',
                        'deviceArn': 'string',
                        'labels': [
                            'string',
                        ],
                        'status': 'IN_USE'|'PREPARING'|'AVAILABLE'|'NOT_AVAILABLE',
                        'udid': 'string',
                        'instanceProfile': {
                            'arn': 'string',
                            'packageCleanup': True|False,
                            'excludeAppPackagesFromCleanup': [
                                'string',
                            ],
                            'rebootAfterUse': True|False,
                            'name': 'string',
                            'description': 'string'
                        }
                    },
                ],
                'availability': 'TEMPORARY_NOT_AVAILABLE'|'BUSY'|'AVAILABLE'|'HIGHLY_AVAILABLE'
            },
            'instanceArn': 'string',
            'deviceMinutes': {
                'total': 123.0,
                'metered': 123.0,
                'unmetered': 123.0
            },
            'videoEndpoint': 'string',
            'videoCapture': True|False
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the result of a list jobs request.

    • jobs (list) --

      Information about the jobs.

      • (dict) --

        Represents a device.

        • arn (string) --

          The job's ARN.

        • name (string) --

          The job's name.

        • type (string) --

          The job's type.

          Allowed values include the following:

          • BUILTIN_FUZZ: The built-in fuzz type.
          • BUILTIN_EXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.
          • APPIUM_JAVA_JUNIT: The Appium Java JUnit type.
          • APPIUM_JAVA_TESTNG: The Appium Java TestNG type.
          • APPIUM_PYTHON: The Appium Python type.
          • APPIUM_NODE: The Appium Node.js type.
          • APPIUM_RUBY: The Appium Ruby type.
          • APPIUM_WEB_JAVA_JUNIT: The Appium Java JUnit type for web apps.
          • APPIUM_WEB_JAVA_TESTNG: The Appium Java TestNG type for web apps.
          • APPIUM_WEB_PYTHON: The Appium Python type for web apps.
          • APPIUM_WEB_NODE: The Appium Node.js type for web apps.
          • APPIUM_WEB_RUBY: The Appium Ruby test type for web apps.
          • CALABASH: The Calabash type.
          • INSTRUMENTATION: The Instrumentation type.
          • UIAUTOMATION: The uiautomation type.
          • UIAUTOMATOR: The uiautomator type.
          • XCTEST: The Xcode test type.
          • XCTEST_UI: The Xcode UI test type.
        • created (datetime) --

          When the job was created.

        • status (string) --

          The job's status.

          Allowed values include:

          • PENDING: A pending status.
          • PENDING_CONCURRENCY: A pending concurrency status.
          • PENDING_DEVICE: A pending device status.
          • PROCESSING: A processing status.
          • SCHEDULING: A scheduling status.
          • PREPARING: A preparing status.
          • RUNNING: A running status.
          • COMPLETED: A completed status.
          • STOPPING: A stopping status.
        • result (string) --

          The job's result.

          Allowed values include:

          • PENDING: A pending condition.
          • PASSED: A passing condition.
          • WARNED: A warning condition.
          • FAILED: A failed condition.
          • SKIPPED: A skipped condition.
          • ERRORED: An error condition.
          • STOPPED: A stopped condition.
        • started (datetime) --

          The job's start time.

        • stopped (datetime) --

          The job's stop time.

        • counters (dict) --

          The job's result counters.

          • total (integer) --

            The total number of entities.

          • passed (integer) --

            The number of passed entities.

          • failed (integer) --

            The number of failed entities.

          • warned (integer) --

            The number of warned entities.

          • errored (integer) --

            The number of errored entities.

          • stopped (integer) --

            The number of stopped entities.

          • skipped (integer) --

            The number of skipped entities.

        • message (string) --

          A message about the job's result.

        • device (dict) --

          The device (phone or tablet).

          • arn (string) --

            The device's ARN.

          • name (string) --

            The device's display name.

          • manufacturer (string) --

            The device's manufacturer name.

          • model (string) --

            The device's model name.

          • modelId (string) --

            The device's model ID.

          • formFactor (string) --

            The device's form factor.

            Allowed values include:

            • PHONE: The phone form factor.
            • TABLET: The tablet form factor.
          • platform (string) --

            The device's platform.

            Allowed values include:

            • ANDROID: The Android platform.
            • IOS: The iOS platform.
          • os (string) --

            The device's operating system type.

          • cpu (dict) --

            Information about the device's CPU.

            • frequency (string) --

              The CPU's frequency.

            • architecture (string) --

              The CPU's architecture, for example x86 or ARM.

            • clock (float) --

              The clock speed of the device's CPU, expressed in hertz (Hz). For example, a 1.2 GHz CPU is expressed as 1200000000.

          • resolution (dict) --

            The resolution of the device.

            • width (integer) --

              The screen resolution's width, expressed in pixels.

            • height (integer) --

              The screen resolution's height, expressed in pixels.

          • heapSize (integer) --

            The device's heap size, expressed in bytes.

          • memory (integer) --

            The device's total memory size, expressed in bytes.

          • image (string) --

            The device's image name.

          • carrier (string) --

            The device's carrier.

          • radio (string) --

            The device's radio.

          • remoteAccessEnabled (boolean) --

            Specifies whether remote access has been enabled for the specified device.

          • remoteDebugEnabled (boolean) --

            This flag is set to true if remote debugging is enabled for the device.

            Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

          • fleetType (string) --

            The type of fleet to which this device belongs. Possible values for fleet type are PRIVATE and PUBLIC.

          • fleetName (string) --

            The name of the fleet to which this device belongs.

          • instances (list) --

            The instances belonging to this device.

            • (dict) --

              Represents the device instance.

              • arn (string) --

                The Amazon Resource Name (ARN) of the device instance.

              • deviceArn (string) --

                The Amazon Resource Name (ARN) of the device.

              • labels (list) --

                An array of strings describing the device instance.

                • (string) --
              • status (string) --

                The status of the device instance. Valid values are listed below.

              • udid (string) --

                Unique device identifier for the device instance.

              • instanceProfile (dict) --

                A object containing information about the instance profile.

                • arn (string) --

                  The Amazon Resource Name (ARN) of the instance profile.

                • packageCleanup (boolean) --

                  When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.

                • excludeAppPackagesFromCleanup (list) --

                  An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

                  The list of packages is only considered if you set packageCleanup to true .

                  • (string) --
                • rebootAfterUse (boolean) --

                  When set to true , Device Farm will reboot the instance after a test run. The default value is true .

                • name (string) --

                  The name of the instance profile.

                • description (string) --

                  The description of the instance profile.

          • availability (string) --

            Reflects how likely a device will be available for a test run. It is currently available in the ListDevices and GetDevice API methods.

        • instanceArn (string) --

          The Amazon Resource Name (ARN) of the instance.

        • deviceMinutes (dict) --

          Represents the total (metered or unmetered) minutes used by the job.

          • total (float) --

            When specified, represents the total minutes used by the resource to run tests.

          • metered (float) --

            When specified, represents only the sum of metered minutes used by the resource to run tests.

          • unmetered (float) --

            When specified, represents only the sum of unmetered minutes used by the resource to run tests.

        • videoEndpoint (string) --

          The endpoint for streaming device video.

        • videoCapture (boolean) --

          This value is set to true if video capture is enabled; otherwise, it is set to false.

    • NextToken (string) --

      A token to resume pagination.

class DeviceFarm.Paginator.ListNetworkProfiles
paginator = client.get_paginator('list_network_profiles')
paginate(**kwargs)

Creates an iterator that will paginate through responses from DeviceFarm.Client.list_network_profiles().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    arn='string',
    type='CURATED'|'PRIVATE',
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • arn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the project for which you want to list network profiles.

  • type (string) -- The type of network profile you wish to return information about. Valid values are listed below.
  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'networkProfiles': [
        {
            'arn': 'string',
            'name': 'string',
            'description': 'string',
            'type': 'CURATED'|'PRIVATE',
            'uplinkBandwidthBits': 123,
            'downlinkBandwidthBits': 123,
            'uplinkDelayMs': 123,
            'downlinkDelayMs': 123,
            'uplinkJitterMs': 123,
            'downlinkJitterMs': 123,
            'uplinkLossPercent': 123,
            'downlinkLossPercent': 123
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • networkProfiles (list) --

      A list of the available network profiles.

      • (dict) --

        An array of settings that describes characteristics of a network profile.

        • arn (string) --

          The Amazon Resource Name (ARN) of the network profile.

        • name (string) --

          The name of the network profile.

        • description (string) --

          The description of the network profile.

        • type (string) --

          The type of network profile. Valid values are listed below.

        • uplinkBandwidthBits (integer) --

          The data throughput rate in bits per second, as an integer from 0 to 104857600.

        • downlinkBandwidthBits (integer) --

          The data throughput rate in bits per second, as an integer from 0 to 104857600.

        • uplinkDelayMs (integer) --

          Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.

        • downlinkDelayMs (integer) --

          Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.

        • uplinkJitterMs (integer) --

          Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.

        • downlinkJitterMs (integer) --

          Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.

        • uplinkLossPercent (integer) --

          Proportion of transmitted packets that fail to arrive from 0 to 100 percent.

        • downlinkLossPercent (integer) --

          Proportion of received packets that fail to arrive from 0 to 100 percent.

    • NextToken (string) --

      A token to resume pagination.

class DeviceFarm.Paginator.ListOfferingPromotions
paginator = client.get_paginator('list_offering_promotions')
paginate(**kwargs)

Creates an iterator that will paginate through responses from DeviceFarm.Client.list_offering_promotions().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters
PaginationConfig (dict) --

A dictionary that provides parameters to control pagination.

  • MaxItems (integer) --

    The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

  • StartingToken (string) --

    A token to specify where to start paginating. This is the NextToken from a previous response.

Return type
dict
Returns
Response Syntax
{
    'offeringPromotions': [
        {
            'id': 'string',
            'description': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --
    • offeringPromotions (list) --

      Information about the offering promotions.

      • (dict) --

        Represents information about an offering promotion.

        • id (string) --

          The ID of the offering promotion.

        • description (string) --

          A string describing the offering promotion.

    • NextToken (string) --

      A token to resume pagination.

class DeviceFarm.Paginator.ListOfferingTransactions
paginator = client.get_paginator('list_offering_transactions')
paginate(**kwargs)

Creates an iterator that will paginate through responses from DeviceFarm.Client.list_offering_transactions().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters
PaginationConfig (dict) --

A dictionary that provides parameters to control pagination.

  • MaxItems (integer) --

    The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

  • StartingToken (string) --

    A token to specify where to start paginating. This is the NextToken from a previous response.

Return type
dict
Returns
Response Syntax
{
    'offeringTransactions': [
        {
            'offeringStatus': {
                'type': 'PURCHASE'|'RENEW'|'SYSTEM',
                'offering': {
                    'id': 'string',
                    'description': 'string',
                    'type': 'RECURRING',
                    'platform': 'ANDROID'|'IOS',
                    'recurringCharges': [
                        {
                            'cost': {
                                'amount': 123.0,
                                'currencyCode': 'USD'
                            },
                            'frequency': 'MONTHLY'
                        },
                    ]
                },
                'quantity': 123,
                'effectiveOn': datetime(2015, 1, 1)
            },
            'transactionId': 'string',
            'offeringPromotionId': 'string',
            'createdOn': datetime(2015, 1, 1),
            'cost': {
                'amount': 123.0,
                'currencyCode': 'USD'
            }
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Returns the transaction log of the specified offerings.

    • offeringTransactions (list) --

      The audit log of subscriptions you have purchased and modified through AWS Device Farm.

      • (dict) --

        Represents the metadata of an offering transaction.

        • offeringStatus (dict) --

          The status of an offering transaction.

          • type (string) --

            The type specified for the offering status.

          • offering (dict) --

            Represents the metadata of an offering status.

            • id (string) --

              The ID that corresponds to a device offering.

            • description (string) --

              A string describing the offering.

            • type (string) --

              The type of offering (e.g., "RECURRING") for a device.

            • platform (string) --

              The platform of the device (e.g., ANDROID or IOS).

            • recurringCharges (list) --

              Specifies whether there are recurring charges for the offering.

              • (dict) --

                Specifies whether charges for devices will be recurring.

                • cost (dict) --

                  The cost of the recurring charge.

                  • amount (float) --

                    The numerical amount of an offering or transaction.

                  • currencyCode (string) --

                    The currency code of a monetary amount. For example, USD means "U.S. dollars."

                • frequency (string) --

                  The frequency in which charges will recur.

          • quantity (integer) --

            The number of available devices in the offering.

          • effectiveOn (datetime) --

            The date on which the offering is effective.

        • transactionId (string) --

          The transaction ID of the offering transaction.

        • offeringPromotionId (string) --

          The ID that corresponds to a device offering promotion.

        • createdOn (datetime) --

          The date on which an offering transaction was created.

        • cost (dict) --

          The cost of an offering transaction.

          • amount (float) --

            The numerical amount of an offering or transaction.

          • currencyCode (string) --

            The currency code of a monetary amount. For example, USD means "U.S. dollars."

    • NextToken (string) --

      A token to resume pagination.

class DeviceFarm.Paginator.ListOfferings
paginator = client.get_paginator('list_offerings')
paginate(**kwargs)

Creates an iterator that will paginate through responses from DeviceFarm.Client.list_offerings().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters
PaginationConfig (dict) --

A dictionary that provides parameters to control pagination.

  • MaxItems (integer) --

    The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

  • StartingToken (string) --

    A token to specify where to start paginating. This is the NextToken from a previous response.

Return type
dict
Returns
Response Syntax
{
    'offerings': [
        {
            'id': 'string',
            'description': 'string',
            'type': 'RECURRING',
            'platform': 'ANDROID'|'IOS',
            'recurringCharges': [
                {
                    'cost': {
                        'amount': 123.0,
                        'currencyCode': 'USD'
                    },
                    'frequency': 'MONTHLY'
                },
            ]
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the return values of the list of offerings.

    • offerings (list) --

      A value representing the list offering results.

      • (dict) --

        Represents the metadata of a device offering.

        • id (string) --

          The ID that corresponds to a device offering.

        • description (string) --

          A string describing the offering.

        • type (string) --

          The type of offering (e.g., "RECURRING") for a device.

        • platform (string) --

          The platform of the device (e.g., ANDROID or IOS).

        • recurringCharges (list) --

          Specifies whether there are recurring charges for the offering.

          • (dict) --

            Specifies whether charges for devices will be recurring.

            • cost (dict) --

              The cost of the recurring charge.

              • amount (float) --

                The numerical amount of an offering or transaction.

              • currencyCode (string) --

                The currency code of a monetary amount. For example, USD means "U.S. dollars."

            • frequency (string) --

              The frequency in which charges will recur.

    • NextToken (string) --

      A token to resume pagination.

class DeviceFarm.Paginator.ListProjects
paginator = client.get_paginator('list_projects')
paginate(**kwargs)

Creates an iterator that will paginate through responses from DeviceFarm.Client.list_projects().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    arn='string',
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • arn (string) -- Optional. If no Amazon Resource Name (ARN) is specified, then AWS Device Farm returns a list of all projects for the AWS account. You can also specify a project ARN.
  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'projects': [
        {
            'arn': 'string',
            'name': 'string',
            'defaultJobTimeoutMinutes': 123,
            'created': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the result of a list projects request.

    • projects (list) --

      Information about the projects.

      • (dict) --

        Represents an operating-system neutral workspace for running and managing tests.

        • arn (string) --

          The project's ARN.

        • name (string) --

          The project's name.

        • defaultJobTimeoutMinutes (integer) --

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

        • created (datetime) --

          When the project was created.

    • NextToken (string) --

      A token to resume pagination.

class DeviceFarm.Paginator.ListRemoteAccessSessions
paginator = client.get_paginator('list_remote_access_sessions')
paginate(**kwargs)

Creates an iterator that will paginate through responses from DeviceFarm.Client.list_remote_access_sessions().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    arn='string',
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • arn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the project about which you are requesting information.

  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'remoteAccessSessions': [
        {
            'arn': 'string',
            'name': 'string',
            'created': datetime(2015, 1, 1),
            'status': 'PENDING'|'PENDING_CONCURRENCY'|'PENDING_DEVICE'|'PROCESSING'|'SCHEDULING'|'PREPARING'|'RUNNING'|'COMPLETED'|'STOPPING',
            'result': 'PENDING'|'PASSED'|'WARNED'|'FAILED'|'SKIPPED'|'ERRORED'|'STOPPED',
            'message': 'string',
            'started': datetime(2015, 1, 1),
            'stopped': datetime(2015, 1, 1),
            'device': {
                'arn': 'string',
                'name': 'string',
                'manufacturer': 'string',
                'model': 'string',
                'modelId': 'string',
                'formFactor': 'PHONE'|'TABLET',
                'platform': 'ANDROID'|'IOS',
                'os': 'string',
                'cpu': {
                    'frequency': 'string',
                    'architecture': 'string',
                    'clock': 123.0
                },
                'resolution': {
                    'width': 123,
                    'height': 123
                },
                'heapSize': 123,
                'memory': 123,
                'image': 'string',
                'carrier': 'string',
                'radio': 'string',
                'remoteAccessEnabled': True|False,
                'remoteDebugEnabled': True|False,
                'fleetType': 'string',
                'fleetName': 'string',
                'instances': [
                    {
                        'arn': 'string',
                        'deviceArn': 'string',
                        'labels': [
                            'string',
                        ],
                        'status': 'IN_USE'|'PREPARING'|'AVAILABLE'|'NOT_AVAILABLE',
                        'udid': 'string',
                        'instanceProfile': {
                            'arn': 'string',
                            'packageCleanup': True|False,
                            'excludeAppPackagesFromCleanup': [
                                'string',
                            ],
                            'rebootAfterUse': True|False,
                            'name': 'string',
                            'description': 'string'
                        }
                    },
                ],
                'availability': 'TEMPORARY_NOT_AVAILABLE'|'BUSY'|'AVAILABLE'|'HIGHLY_AVAILABLE'
            },
            'instanceArn': 'string',
            'remoteDebugEnabled': True|False,
            'remoteRecordEnabled': True|False,
            'remoteRecordAppArn': 'string',
            'hostAddress': 'string',
            'clientId': 'string',
            'billingMethod': 'METERED'|'UNMETERED',
            'deviceMinutes': {
                'total': 123.0,
                'metered': 123.0,
                'unmetered': 123.0
            },
            'endpoint': 'string',
            'deviceUdid': 'string',
            'interactionMode': 'INTERACTIVE'|'NO_VIDEO'|'VIDEO_ONLY',
            'skipAppResign': True|False
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the response from the server after AWS Device Farm makes a request to return information about the remote access session.

    • remoteAccessSessions (list) --

      A container representing the metadata from the service about each remote access session you are requesting.

      • (dict) --

        Represents information about the remote access session.

        • arn (string) --

          The Amazon Resource Name (ARN) of the remote access session.

        • name (string) --

          The name of the remote access session.

        • created (datetime) --

          The date and time the remote access session was created.

        • status (string) --

          The status of the remote access session. Can be any of the following:

          • PENDING: A pending status.
          • PENDING_CONCURRENCY: A pending concurrency status.
          • PENDING_DEVICE: A pending device status.
          • PROCESSING: A processing status.
          • SCHEDULING: A scheduling status.
          • PREPARING: A preparing status.
          • RUNNING: A running status.
          • COMPLETED: A completed status.
          • STOPPING: A stopping status.
        • result (string) --

          The result of the remote access session. Can be any of the following:

          • PENDING: A pending condition.
          • PASSED: A passing condition.
          • WARNED: A warning condition.
          • FAILED: A failed condition.
          • SKIPPED: A skipped condition.
          • ERRORED: An error condition.
          • STOPPED: A stopped condition.
        • message (string) --

          A message about the remote access session.

        • started (datetime) --

          The date and time the remote access session was started.

        • stopped (datetime) --

          The date and time the remote access session was stopped.

        • device (dict) --

          The device (phone or tablet) used in the remote access session.

          • arn (string) --

            The device's ARN.

          • name (string) --

            The device's display name.

          • manufacturer (string) --

            The device's manufacturer name.

          • model (string) --

            The device's model name.

          • modelId (string) --

            The device's model ID.

          • formFactor (string) --

            The device's form factor.

            Allowed values include:

            • PHONE: The phone form factor.
            • TABLET: The tablet form factor.
          • platform (string) --

            The device's platform.

            Allowed values include:

            • ANDROID: The Android platform.
            • IOS: The iOS platform.
          • os (string) --

            The device's operating system type.

          • cpu (dict) --

            Information about the device's CPU.

            • frequency (string) --

              The CPU's frequency.

            • architecture (string) --

              The CPU's architecture, for example x86 or ARM.

            • clock (float) --

              The clock speed of the device's CPU, expressed in hertz (Hz). For example, a 1.2 GHz CPU is expressed as 1200000000.

          • resolution (dict) --

            The resolution of the device.

            • width (integer) --

              The screen resolution's width, expressed in pixels.

            • height (integer) --

              The screen resolution's height, expressed in pixels.

          • heapSize (integer) --

            The device's heap size, expressed in bytes.

          • memory (integer) --

            The device's total memory size, expressed in bytes.

          • image (string) --

            The device's image name.

          • carrier (string) --

            The device's carrier.

          • radio (string) --

            The device's radio.

          • remoteAccessEnabled (boolean) --

            Specifies whether remote access has been enabled for the specified device.

          • remoteDebugEnabled (boolean) --

            This flag is set to true if remote debugging is enabled for the device.

            Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

          • fleetType (string) --

            The type of fleet to which this device belongs. Possible values for fleet type are PRIVATE and PUBLIC.

          • fleetName (string) --

            The name of the fleet to which this device belongs.

          • instances (list) --

            The instances belonging to this device.

            • (dict) --

              Represents the device instance.

              • arn (string) --

                The Amazon Resource Name (ARN) of the device instance.

              • deviceArn (string) --

                The Amazon Resource Name (ARN) of the device.

              • labels (list) --

                An array of strings describing the device instance.

                • (string) --
              • status (string) --

                The status of the device instance. Valid values are listed below.

              • udid (string) --

                Unique device identifier for the device instance.

              • instanceProfile (dict) --

                A object containing information about the instance profile.

                • arn (string) --

                  The Amazon Resource Name (ARN) of the instance profile.

                • packageCleanup (boolean) --

                  When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.

                • excludeAppPackagesFromCleanup (list) --

                  An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

                  The list of packages is only considered if you set packageCleanup to true .

                  • (string) --
                • rebootAfterUse (boolean) --

                  When set to true , Device Farm will reboot the instance after a test run. The default value is true .

                • name (string) --

                  The name of the instance profile.

                • description (string) --

                  The description of the instance profile.

          • availability (string) --

            Reflects how likely a device will be available for a test run. It is currently available in the ListDevices and GetDevice API methods.

        • instanceArn (string) --

          The Amazon Resource Name (ARN) of the instance.

        • remoteDebugEnabled (boolean) --

          This flag is set to true if remote debugging is enabled for the remote access session.

          Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

        • remoteRecordEnabled (boolean) --

          This flag is set to true if remote recording is enabled for the remote access session.

        • remoteRecordAppArn (string) --

          The Amazon Resource Name (ARN) for the app to be recorded in the remote access session.

        • hostAddress (string) --

          IP address of the EC2 host where you need to connect to remotely debug devices. Only returned if remote debugging is enabled for the remote access session.

          Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

        • clientId (string) --

          Unique identifier of your client for the remote access session. Only returned if remote debugging is enabled for the remote access session.

          Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

        • billingMethod (string) --

          The billing method of the remote access session. Possible values include METERED or UNMETERED . For more information about metered devices, see AWS Device Farm terminology ."

        • deviceMinutes (dict) --

          The number of minutes a device is used in a remote access session (including setup and teardown minutes).

          • total (float) --

            When specified, represents the total minutes used by the resource to run tests.

          • metered (float) --

            When specified, represents only the sum of metered minutes used by the resource to run tests.

          • unmetered (float) --

            When specified, represents only the sum of unmetered minutes used by the resource to run tests.

        • endpoint (string) --

          The endpoint for the remote access sesssion.

        • deviceUdid (string) --

          Unique device identifier for the remote device. Only returned if remote debugging is enabled for the remote access session.

          Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

        • interactionMode (string) --

          The interaction mode of the remote access session. Valid values are:

          • INTERACTIVE: You can interact with the iOS device by viewing, touching, and rotating the screen. You cannot run XCUITest framework-based tests in this mode.
          • NO_VIDEO: You are connected to the device but cannot interact with it or view the screen. This mode has the fastest test execution speed. You can run XCUITest framework-based tests in this mode.
          • VIDEO_ONLY: You can view the screen but cannot touch or rotate it. You can run XCUITest framework-based tests and watch the screen in this mode.
        • skipAppResign (boolean) --

          When set to true , for private devices, Device Farm will not sign your app again. For public devices, Device Farm always signs your apps again and this parameter has no effect.

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

    • NextToken (string) --

      A token to resume pagination.

class DeviceFarm.Paginator.ListRuns
paginator = client.get_paginator('list_runs')
paginate(**kwargs)

Creates an iterator that will paginate through responses from DeviceFarm.Client.list_runs().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    arn='string',
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • arn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the project for which you want to list runs.

  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'runs': [
        {
            'arn': 'string',
            'name': 'string',
            'type': 'BUILTIN_FUZZ'|'BUILTIN_EXPLORER'|'WEB_PERFORMANCE_PROFILE'|'APPIUM_JAVA_JUNIT'|'APPIUM_JAVA_TESTNG'|'APPIUM_PYTHON'|'APPIUM_NODE'|'APPIUM_RUBY'|'APPIUM_WEB_JAVA_JUNIT'|'APPIUM_WEB_JAVA_TESTNG'|'APPIUM_WEB_PYTHON'|'APPIUM_WEB_NODE'|'APPIUM_WEB_RUBY'|'CALABASH'|'INSTRUMENTATION'|'UIAUTOMATION'|'UIAUTOMATOR'|'XCTEST'|'XCTEST_UI'|'REMOTE_ACCESS_RECORD'|'REMOTE_ACCESS_REPLAY',
            'platform': 'ANDROID'|'IOS',
            'created': datetime(2015, 1, 1),
            'status': 'PENDING'|'PENDING_CONCURRENCY'|'PENDING_DEVICE'|'PROCESSING'|'SCHEDULING'|'PREPARING'|'RUNNING'|'COMPLETED'|'STOPPING',
            'result': 'PENDING'|'PASSED'|'WARNED'|'FAILED'|'SKIPPED'|'ERRORED'|'STOPPED',
            'started': datetime(2015, 1, 1),
            'stopped': datetime(2015, 1, 1),
            'counters': {
                'total': 123,
                'passed': 123,
                'failed': 123,
                'warned': 123,
                'errored': 123,
                'stopped': 123,
                'skipped': 123
            },
            'message': 'string',
            'totalJobs': 123,
            'completedJobs': 123,
            'billingMethod': 'METERED'|'UNMETERED',
            'deviceMinutes': {
                'total': 123.0,
                'metered': 123.0,
                'unmetered': 123.0
            },
            'networkProfile': {
                'arn': 'string',
                'name': 'string',
                'description': 'string',
                'type': 'CURATED'|'PRIVATE',
                'uplinkBandwidthBits': 123,
                'downlinkBandwidthBits': 123,
                'uplinkDelayMs': 123,
                'downlinkDelayMs': 123,
                'uplinkJitterMs': 123,
                'downlinkJitterMs': 123,
                'uplinkLossPercent': 123,
                'downlinkLossPercent': 123
            },
            'parsingResultUrl': 'string',
            'resultCode': 'PARSING_FAILED'|'VPC_ENDPOINT_SETUP_FAILED',
            'seed': 123,
            'appUpload': 'string',
            'eventCount': 123,
            'jobTimeoutMinutes': 123,
            'devicePoolArn': 'string',
            'locale': 'string',
            'radios': {
                'wifi': True|False,
                'bluetooth': True|False,
                'nfc': True|False,
                'gps': True|False
            },
            'location': {
                'latitude': 123.0,
                'longitude': 123.0
            },
            'customerArtifactPaths': {
                'iosPaths': [
                    'string',
                ],
                'androidPaths': [
                    'string',
                ],
                'deviceHostPaths': [
                    'string',
                ]
            },
            'webUrl': 'string',
            'skipAppResign': True|False,
            'testSpecArn': 'string',
            'deviceSelectionResult': {
                'filters': [
                    {
                        'attribute': 'ARN'|'PLATFORM'|'OS_VERSION'|'MODEL'|'AVAILABILITY'|'FORM_FACTOR'|'MANUFACTURER'|'REMOTE_ACCESS_ENABLED'|'REMOTE_DEBUG_ENABLED'|'INSTANCE_ARN'|'INSTANCE_LABELS'|'FLEET_TYPE',
                        'operator': 'EQUALS'|'LESS_THAN'|'LESS_THAN_OR_EQUALS'|'GREATER_THAN'|'GREATER_THAN_OR_EQUALS'|'IN'|'NOT_IN'|'CONTAINS',
                        'values': [
                            'string',
                        ]
                    },
                ],
                'matchedDevicesCount': 123,
                'maxDevices': 123
            }
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the result of a list runs request.

    • runs (list) --

      Information about the runs.

      • (dict) --

        Represents a test run on a set of devices with a given app package, test parameters, etc.

        • arn (string) --

          The run's ARN.

        • name (string) --

          The run's name.

        • type (string) --

          The run's type.

          Must be one of the following values:

          • BUILTIN_FUZZ: The built-in fuzz type.
          • BUILTIN_EXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.
          • APPIUM_JAVA_JUNIT: The Appium Java JUnit type.
          • APPIUM_JAVA_TESTNG: The Appium Java TestNG type.
          • APPIUM_PYTHON: The Appium Python type.
          • APPIUM_NODE: The Appium Node.js type.
          • APPIUM_RUBY: The Appium Ruby type.
          • APPIUM_WEB_JAVA_JUNIT: The Appium Java JUnit type for web apps.
          • APPIUM_WEB_JAVA_TESTNG: The Appium Java TestNG type for web apps.
          • APPIUM_WEB_PYTHON: The Appium Python type for web apps.
          • APPIUM_WEB_NODE: The Appium Node.js type for web apps.
          • APPIUM_WEB_RUBY: The Appium Ruby type for web apps.
          • CALABASH: The Calabash type.
          • INSTRUMENTATION: The Instrumentation type.
          • UIAUTOMATION: The uiautomation type.
          • UIAUTOMATOR: The uiautomator type.
          • XCTEST: The Xcode test type.
          • XCTEST_UI: The Xcode UI test type.
        • platform (string) --

          The run's platform.

          Allowed values include:

          • ANDROID: The Android platform.
          • IOS: The iOS platform.
        • created (datetime) --

          When the run was created.

        • status (string) --

          The run's status.

          Allowed values include:

          • PENDING: A pending status.
          • PENDING_CONCURRENCY: A pending concurrency status.
          • PENDING_DEVICE: A pending device status.
          • PROCESSING: A processing status.
          • SCHEDULING: A scheduling status.
          • PREPARING: A preparing status.
          • RUNNING: A running status.
          • COMPLETED: A completed status.
          • STOPPING: A stopping status.
        • result (string) --

          The run's result.

          Allowed values include:

          • PENDING: A pending condition.
          • PASSED: A passing condition.
          • WARNED: A warning condition.
          • FAILED: A failed condition.
          • SKIPPED: A skipped condition.
          • ERRORED: An error condition.
          • STOPPED: A stopped condition.
        • started (datetime) --

          The run's start time.

        • stopped (datetime) --

          The run's stop time.

        • counters (dict) --

          The run's result counters.

          • total (integer) --

            The total number of entities.

          • passed (integer) --

            The number of passed entities.

          • failed (integer) --

            The number of failed entities.

          • warned (integer) --

            The number of warned entities.

          • errored (integer) --

            The number of errored entities.

          • stopped (integer) --

            The number of stopped entities.

          • skipped (integer) --

            The number of skipped entities.

        • message (string) --

          A message about the run's result.

        • totalJobs (integer) --

          The total number of jobs for the run.

        • completedJobs (integer) --

          The total number of completed jobs.

        • billingMethod (string) --

          Specifies the billing method for a test run: metered or unmetered . If the parameter is not specified, the default value is metered .

        • deviceMinutes (dict) --

          Represents the total (metered or unmetered) minutes used by the test run.

          • total (float) --

            When specified, represents the total minutes used by the resource to run tests.

          • metered (float) --

            When specified, represents only the sum of metered minutes used by the resource to run tests.

          • unmetered (float) --

            When specified, represents only the sum of unmetered minutes used by the resource to run tests.

        • networkProfile (dict) --

          The network profile being used for a test run.

          • arn (string) --

            The Amazon Resource Name (ARN) of the network profile.

          • name (string) --

            The name of the network profile.

          • description (string) --

            The description of the network profile.

          • type (string) --

            The type of network profile. Valid values are listed below.

          • uplinkBandwidthBits (integer) --

            The data throughput rate in bits per second, as an integer from 0 to 104857600.

          • downlinkBandwidthBits (integer) --

            The data throughput rate in bits per second, as an integer from 0 to 104857600.

          • uplinkDelayMs (integer) --

            Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.

          • downlinkDelayMs (integer) --

            Delay time for all packets to destination in milliseconds as an integer from 0 to 2000.

          • uplinkJitterMs (integer) --

            Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.

          • downlinkJitterMs (integer) --

            Time variation in the delay of received packets in milliseconds as an integer from 0 to 2000.

          • uplinkLossPercent (integer) --

            Proportion of transmitted packets that fail to arrive from 0 to 100 percent.

          • downlinkLossPercent (integer) --

            Proportion of received packets that fail to arrive from 0 to 100 percent.

        • parsingResultUrl (string) --

          Read-only URL for an object in S3 bucket where you can get the parsing results of the test package. If the test package doesn't parse, the reason why it doesn't parse appears in the file that this URL points to.

        • resultCode (string) --

          Supporting field for the result field. Set only if result is SKIPPED . PARSING_FAILED if the result is skipped because of test package parsing failure.

        • seed (integer) --

          For fuzz tests, this is a seed to use for randomizing the UI fuzz test. Using the same seed value between tests ensures identical event sequences.

        • appUpload (string) --

          An app to upload or that has been uploaded.

        • eventCount (integer) --

          For fuzz tests, this is the number of events, between 1 and 10000, that the UI fuzz test should perform.

        • jobTimeoutMinutes (integer) --

          The number of minutes the job will execute before it times out.

        • devicePoolArn (string) --

          The ARN of the device pool for the run.

        • locale (string) --

          Information about the locale that is used for the run.

        • radios (dict) --

          Information about the radio states for the run.

          • wifi (boolean) --

            True if Wi-Fi is enabled at the beginning of the test; otherwise, false.

          • bluetooth (boolean) --

            True if Bluetooth is enabled at the beginning of the test; otherwise, false.

          • nfc (boolean) --

            True if NFC is enabled at the beginning of the test; otherwise, false.

          • gps (boolean) --

            True if GPS is enabled at the beginning of the test; otherwise, false.

        • location (dict) --

          Information about the location that is used for the run.

          • latitude (float) --

            The latitude.

          • longitude (float) --

            The longitude.

        • customerArtifactPaths (dict) --

          Output CustomerArtifactPaths object for the test run.

          • iosPaths (list) --

            Comma-separated list of paths on the iOS device where the artifacts generated by the customer's tests will be pulled from.

            • (string) --
          • androidPaths (list) --

            Comma-separated list of paths on the Android device where the artifacts generated by the customer's tests will be pulled from.

            • (string) --
          • deviceHostPaths (list) --

            Comma-separated list of paths in the test execution environment where the artifacts generated by the customer's tests will be pulled from.

            • (string) --
        • webUrl (string) --

          The Device Farm console URL for the recording of the run.

        • skipAppResign (boolean) --

          When set to true , for private devices, Device Farm will not sign your app again. For public devices, Device Farm always signs your apps again and this parameter has no effect.

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

        • testSpecArn (string) --

          The ARN of the YAML-formatted test specification for the run.

        • deviceSelectionResult (dict) --

          The results of a device filter used to select the devices for a test run.

          • filters (list) --

            The filters in a device selection result.

            • (dict) --

              Represents a device filter used to select a set of devices to be included in a test run. This data structure is passed in as the deviceSelectionConfiguration parameter to ScheduleRun. For an example of the JSON request syntax, see ScheduleRun .

              It is also passed in as the filters parameter to ListDevices. For an example of the JSON request syntax, see ListDevices .

              • attribute (string) --

                The aspect of a device such as platform or model used as the selection criteria in a device filter.

                The supported operators for each attribute are provided in the following list.

                ARN

                The Amazon Resource Name (ARN) of the device. For example, "arn:aws:devicefarm:us-west-2::device:12345Example".

                Supported operators : EQUALS , IN , NOT_IN

                PLATFORM

                The device platform. Valid values are "ANDROID" or "IOS".

                Supported operators : EQUALS

                OS_VERSION

                The operating system version. For example, "10.3.2".

                Supported operators : EQUALS , GREATER_THAN , GREATER_THAN_OR_EQUALS , IN , LESS_THAN , LESS_THAN_OR_EQUALS , NOT_IN

                MODEL

                The device model. For example, "iPad 5th Gen".

                Supported operators : CONTAINS , EQUALS , IN , NOT_IN

                AVAILABILITY

                The current availability of the device. Valid values are "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".

                Supported operators : EQUALS

                FORM_FACTOR

                The device form factor. Valid values are "PHONE" or "TABLET".

                Supported operators : EQUALS

                MANUFACTURER

                The device manufacturer. For example, "Apple".

                Supported operators : EQUALS , IN , NOT_IN

                REMOTE_ACCESS_ENABLED

                Whether the device is enabled for remote access. Valid values are "TRUE" or "FALSE".

                Supported operators : EQUALS

                REMOTE_DEBUG_ENABLED

                Ignored. Whether the device is enabled for remote debugging. Valid values are "TRUE" or "FALSE".

                Supported operators : EQUALS

                This filter will be ignored, as remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

                INSTANCE_ARN

                The Amazon Resource Name (ARN) of the device instance.

                Supported operators : EQUALS , IN , NOT_IN

                INSTANCE_LABELS

                The label of the device instance.

                Supported operators : CONTAINS

                FLEET_TYPE

                The fleet type. Valid values are "PUBLIC" or "PRIVATE".

                Supported operators : EQUALS

              • operator (string) --

                Specifies how Device Farm compares the filter's attribute to the value. For the operators that are supported by each attribute, see the attribute descriptions.

              • values (list) --

                An array of one or more filter values used in a device filter.

                Operator Values

                • The IN and NOT_IN operators can take a values array that has more than one element.
                • The other operators require an array with a single element.

                Attribute Values

                • The PLATFORM attribute can be set to "ANDROID" or "IOS".
                • The AVAILABILITY attribute can be set to "AVAILABLE", "HIGHLY_AVAILABLE", "BUSY", or "TEMPORARY_NOT_AVAILABLE".
                • The FORM_FACTOR attribute can be set to "PHONE" or "TABLET".
                • The FLEET_TYPE attribute can be set to "PUBLIC" or "PRIVATE".
                • (string) --
          • matchedDevicesCount (integer) --

            The number of devices that matched the device filter selection criteria.

          • maxDevices (integer) --

            The maximum number of devices to be selected by a device filter and included in a test run.

    • NextToken (string) --

      A token to resume pagination.

class DeviceFarm.Paginator.ListSamples
paginator = client.get_paginator('list_samples')
paginate(**kwargs)

Creates an iterator that will paginate through responses from DeviceFarm.Client.list_samples().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    arn='string',
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • arn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the job used to list samples.

  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'samples': [
        {
            'arn': 'string',
            'type': 'CPU'|'MEMORY'|'THREADS'|'RX_RATE'|'TX_RATE'|'RX'|'TX'|'NATIVE_FRAMES'|'NATIVE_FPS'|'NATIVE_MIN_DRAWTIME'|'NATIVE_AVG_DRAWTIME'|'NATIVE_MAX_DRAWTIME'|'OPENGL_FRAMES'|'OPENGL_FPS'|'OPENGL_MIN_DRAWTIME'|'OPENGL_AVG_DRAWTIME'|'OPENGL_MAX_DRAWTIME',
            'url': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the result of a list samples request.

    • samples (list) --

      Information about the samples.

      • (dict) --

        Represents a sample of performance data.

        • arn (string) --

          The sample's ARN.

        • type (string) --

          The sample's type.

          Must be one of the following values:

          • CPU: A CPU sample type. This is expressed as the app processing CPU time (including child processes) as reported by process, as a percentage.
          • MEMORY: A memory usage sample type. This is expressed as the total proportional set size of an app process, in kilobytes.
          • NATIVE_AVG_DRAWTIME
          • NATIVE_FPS
          • NATIVE_FRAMES
          • NATIVE_MAX_DRAWTIME
          • NATIVE_MIN_DRAWTIME
          • OPENGL_AVG_DRAWTIME
          • OPENGL_FPS
          • OPENGL_FRAMES
          • OPENGL_MAX_DRAWTIME
          • OPENGL_MIN_DRAWTIME
          • RX
          • RX_RATE: The total number of bytes per second (TCP and UDP) that are sent, by app process.
          • THREADS: A threads sample type. This is expressed as the total number of threads per app process.
          • TX
          • TX_RATE: The total number of bytes per second (TCP and UDP) that are received, by app process.
        • url (string) --

          The pre-signed Amazon S3 URL that can be used with a corresponding GET request to download the sample's file.

    • NextToken (string) --

      A token to resume pagination.

class DeviceFarm.Paginator.ListSuites
paginator = client.get_paginator('list_suites')
paginate(**kwargs)

Creates an iterator that will paginate through responses from DeviceFarm.Client.list_suites().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    arn='string',
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • arn (string) --

    [REQUIRED]

    The job's Amazon Resource Name (ARN).

  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'suites': [
        {
            'arn': 'string',
            'name': 'string',
            'type': 'BUILTIN_FUZZ'|'BUILTIN_EXPLORER'|'WEB_PERFORMANCE_PROFILE'|'APPIUM_JAVA_JUNIT'|'APPIUM_JAVA_TESTNG'|'APPIUM_PYTHON'|'APPIUM_NODE'|'APPIUM_RUBY'|'APPIUM_WEB_JAVA_JUNIT'|'APPIUM_WEB_JAVA_TESTNG'|'APPIUM_WEB_PYTHON'|'APPIUM_WEB_NODE'|'APPIUM_WEB_RUBY'|'CALABASH'|'INSTRUMENTATION'|'UIAUTOMATION'|'UIAUTOMATOR'|'XCTEST'|'XCTEST_UI'|'REMOTE_ACCESS_RECORD'|'REMOTE_ACCESS_REPLAY',
            'created': datetime(2015, 1, 1),
            'status': 'PENDING'|'PENDING_CONCURRENCY'|'PENDING_DEVICE'|'PROCESSING'|'SCHEDULING'|'PREPARING'|'RUNNING'|'COMPLETED'|'STOPPING',
            'result': 'PENDING'|'PASSED'|'WARNED'|'FAILED'|'SKIPPED'|'ERRORED'|'STOPPED',
            'started': datetime(2015, 1, 1),
            'stopped': datetime(2015, 1, 1),
            'counters': {
                'total': 123,
                'passed': 123,
                'failed': 123,
                'warned': 123,
                'errored': 123,
                'stopped': 123,
                'skipped': 123
            },
            'message': 'string',
            'deviceMinutes': {
                'total': 123.0,
                'metered': 123.0,
                'unmetered': 123.0
            }
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the result of a list suites request.

    • suites (list) --

      Information about the suites.

      • (dict) --

        Represents a collection of one or more tests.

        • arn (string) --

          The suite's ARN.

        • name (string) --

          The suite's name.

        • type (string) --

          The suite's type.

          Must be one of the following values:

          • BUILTIN_FUZZ: The built-in fuzz type.
          • BUILTIN_EXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.
          • APPIUM_JAVA_JUNIT: The Appium Java JUnit type.
          • APPIUM_JAVA_TESTNG: The Appium Java TestNG type.
          • APPIUM_PYTHON: The Appium Python type.
          • APPIUM_NODE: The Appium Node.js type.
          • APPIUM_RUBY: The Appium Ruby type.
          • APPIUM_WEB_JAVA_JUNIT: The Appium Java JUnit type for web apps.
          • APPIUM_WEB_JAVA_TESTNG: The Appium Java TestNG type for web apps.
          • APPIUM_WEB_PYTHON: The Appium Python type for web apps.
          • APPIUM_WEB_NODE: The Appium Node.js type for web apps.
          • APPIUM_WEB_RUBY: The Appium Ruby type for web apps.
          • CALABASH: The Calabash type.
          • INSTRUMENTATION: The Instrumentation type.
          • UIAUTOMATION: The uiautomation type.
          • UIAUTOMATOR: The uiautomator type.
          • XCTEST: The Xcode test type.
          • XCTEST_UI: The Xcode UI test type.
        • created (datetime) --

          When the suite was created.

        • status (string) --

          The suite's status.

          Allowed values include:

          • PENDING: A pending status.
          • PENDING_CONCURRENCY: A pending concurrency status.
          • PENDING_DEVICE: A pending device status.
          • PROCESSING: A processing status.
          • SCHEDULING: A scheduling status.
          • PREPARING: A preparing status.
          • RUNNING: A running status.
          • COMPLETED: A completed status.
          • STOPPING: A stopping status.
        • result (string) --

          The suite's result.

          Allowed values include:

          • PENDING: A pending condition.
          • PASSED: A passing condition.
          • WARNED: A warning condition.
          • FAILED: A failed condition.
          • SKIPPED: A skipped condition.
          • ERRORED: An error condition.
          • STOPPED: A stopped condition.
        • started (datetime) --

          The suite's start time.

        • stopped (datetime) --

          The suite's stop time.

        • counters (dict) --

          The suite's result counters.

          • total (integer) --

            The total number of entities.

          • passed (integer) --

            The number of passed entities.

          • failed (integer) --

            The number of failed entities.

          • warned (integer) --

            The number of warned entities.

          • errored (integer) --

            The number of errored entities.

          • stopped (integer) --

            The number of stopped entities.

          • skipped (integer) --

            The number of skipped entities.

        • message (string) --

          A message about the suite's result.

        • deviceMinutes (dict) --

          Represents the total (metered or unmetered) minutes used by the test suite.

          • total (float) --

            When specified, represents the total minutes used by the resource to run tests.

          • metered (float) --

            When specified, represents only the sum of metered minutes used by the resource to run tests.

          • unmetered (float) --

            When specified, represents only the sum of unmetered minutes used by the resource to run tests.

    • NextToken (string) --

      A token to resume pagination.

class DeviceFarm.Paginator.ListTests
paginator = client.get_paginator('list_tests')
paginate(**kwargs)

Creates an iterator that will paginate through responses from DeviceFarm.Client.list_tests().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    arn='string',
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • arn (string) --

    [REQUIRED]

    The test suite's Amazon Resource Name (ARN).

  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'tests': [
        {
            'arn': 'string',
            'name': 'string',
            'type': 'BUILTIN_FUZZ'|'BUILTIN_EXPLORER'|'WEB_PERFORMANCE_PROFILE'|'APPIUM_JAVA_JUNIT'|'APPIUM_JAVA_TESTNG'|'APPIUM_PYTHON'|'APPIUM_NODE'|'APPIUM_RUBY'|'APPIUM_WEB_JAVA_JUNIT'|'APPIUM_WEB_JAVA_TESTNG'|'APPIUM_WEB_PYTHON'|'APPIUM_WEB_NODE'|'APPIUM_WEB_RUBY'|'CALABASH'|'INSTRUMENTATION'|'UIAUTOMATION'|'UIAUTOMATOR'|'XCTEST'|'XCTEST_UI'|'REMOTE_ACCESS_RECORD'|'REMOTE_ACCESS_REPLAY',
            'created': datetime(2015, 1, 1),
            'status': 'PENDING'|'PENDING_CONCURRENCY'|'PENDING_DEVICE'|'PROCESSING'|'SCHEDULING'|'PREPARING'|'RUNNING'|'COMPLETED'|'STOPPING',
            'result': 'PENDING'|'PASSED'|'WARNED'|'FAILED'|'SKIPPED'|'ERRORED'|'STOPPED',
            'started': datetime(2015, 1, 1),
            'stopped': datetime(2015, 1, 1),
            'counters': {
                'total': 123,
                'passed': 123,
                'failed': 123,
                'warned': 123,
                'errored': 123,
                'stopped': 123,
                'skipped': 123
            },
            'message': 'string',
            'deviceMinutes': {
                'total': 123.0,
                'metered': 123.0,
                'unmetered': 123.0
            }
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the result of a list tests request.

    • tests (list) --

      Information about the tests.

      • (dict) --

        Represents a condition that is evaluated.

        • arn (string) --

          The test's ARN.

        • name (string) --

          The test's name.

        • type (string) --

          The test's type.

          Must be one of the following values:

          • BUILTIN_FUZZ: The built-in fuzz type.
          • BUILTIN_EXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.
          • APPIUM_JAVA_JUNIT: The Appium Java JUnit type.
          • APPIUM_JAVA_TESTNG: The Appium Java TestNG type.
          • APPIUM_PYTHON: The Appium Python type.
          • APPIUM_NODE: The Appium Node.js type.
          • APPIUM_RUBY: The Appium Ruby type.
          • APPIUM_WEB_JAVA_JUNIT: The Appium Java JUnit type for web apps.
          • APPIUM_WEB_JAVA_TESTNG: The Appium Java TestNG type for web apps.
          • APPIUM_WEB_PYTHON: The Appium Python type for web apps.
          • APPIUM_WEB_NODE: The Appium Node.js type for web apps.
          • APPIUM_WEB_RUBY: The Appium Ruby type for web apps.
          • CALABASH: The Calabash type.
          • INSTRUMENTATION: The Instrumentation type.
          • UIAUTOMATION: The uiautomation type.
          • UIAUTOMATOR: The uiautomator type.
          • XCTEST: The Xcode test type.
          • XCTEST_UI: The Xcode UI test type.
        • created (datetime) --

          When the test was created.

        • status (string) --

          The test's status.

          Allowed values include:

          • PENDING: A pending status.
          • PENDING_CONCURRENCY: A pending concurrency status.
          • PENDING_DEVICE: A pending device status.
          • PROCESSING: A processing status.
          • SCHEDULING: A scheduling status.
          • PREPARING: A preparing status.
          • RUNNING: A running status.
          • COMPLETED: A completed status.
          • STOPPING: A stopping status.
        • result (string) --

          The test's result.

          Allowed values include:

          • PENDING: A pending condition.
          • PASSED: A passing condition.
          • WARNED: A warning condition.
          • FAILED: A failed condition.
          • SKIPPED: A skipped condition.
          • ERRORED: An error condition.
          • STOPPED: A stopped condition.
        • started (datetime) --

          The test's start time.

        • stopped (datetime) --

          The test's stop time.

        • counters (dict) --

          The test's result counters.

          • total (integer) --

            The total number of entities.

          • passed (integer) --

            The number of passed entities.

          • failed (integer) --

            The number of failed entities.

          • warned (integer) --

            The number of warned entities.

          • errored (integer) --

            The number of errored entities.

          • stopped (integer) --

            The number of stopped entities.

          • skipped (integer) --

            The number of skipped entities.

        • message (string) --

          A message about the test's result.

        • deviceMinutes (dict) --

          Represents the total (metered or unmetered) minutes used by the test.

          • total (float) --

            When specified, represents the total minutes used by the resource to run tests.

          • metered (float) --

            When specified, represents only the sum of metered minutes used by the resource to run tests.

          • unmetered (float) --

            When specified, represents only the sum of unmetered minutes used by the resource to run tests.

    • NextToken (string) --

      A token to resume pagination.

class DeviceFarm.Paginator.ListUniqueProblems
paginator = client.get_paginator('list_unique_problems')
paginate(**kwargs)

Creates an iterator that will paginate through responses from DeviceFarm.Client.list_unique_problems().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    arn='string',
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • arn (string) --

    [REQUIRED]

    The unique problems' ARNs.

  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'uniqueProblems': {
        'string': [
            {
                'message': 'string',
                'problems': [
                    {
                        'run': {
                            'arn': 'string',
                            'name': 'string'
                        },
                        'job': {
                            'arn': 'string',
                            'name': 'string'
                        },
                        'suite': {
                            'arn': 'string',
                            'name': 'string'
                        },
                        'test': {
                            'arn': 'string',
                            'name': 'string'
                        },
                        'device': {
                            'arn': 'string',
                            'name': 'string',
                            'manufacturer': 'string',
                            'model': 'string',
                            'modelId': 'string',
                            'formFactor': 'PHONE'|'TABLET',
                            'platform': 'ANDROID'|'IOS',
                            'os': 'string',
                            'cpu': {
                                'frequency': 'string',
                                'architecture': 'string',
                                'clock': 123.0
                            },
                            'resolution': {
                                'width': 123,
                                'height': 123
                            },
                            'heapSize': 123,
                            'memory': 123,
                            'image': 'string',
                            'carrier': 'string',
                            'radio': 'string',
                            'remoteAccessEnabled': True|False,
                            'remoteDebugEnabled': True|False,
                            'fleetType': 'string',
                            'fleetName': 'string',
                            'instances': [
                                {
                                    'arn': 'string',
                                    'deviceArn': 'string',
                                    'labels': [
                                        'string',
                                    ],
                                    'status': 'IN_USE'|'PREPARING'|'AVAILABLE'|'NOT_AVAILABLE',
                                    'udid': 'string',
                                    'instanceProfile': {
                                        'arn': 'string',
                                        'packageCleanup': True|False,
                                        'excludeAppPackagesFromCleanup': [
                                            'string',
                                        ],
                                        'rebootAfterUse': True|False,
                                        'name': 'string',
                                        'description': 'string'
                                    }
                                },
                            ],
                            'availability': 'TEMPORARY_NOT_AVAILABLE'|'BUSY'|'AVAILABLE'|'HIGHLY_AVAILABLE'
                        },
                        'result': 'PENDING'|'PASSED'|'WARNED'|'FAILED'|'SKIPPED'|'ERRORED'|'STOPPED',
                        'message': 'string'
                    },
                ]
            },
        ]
    },
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the result of a list unique problems request.

    • uniqueProblems (dict) --

      Information about the unique problems.

      Allowed values include:

      • PENDING: A pending condition.
      • PASSED: A passing condition.
      • WARNED: A warning condition.
      • FAILED: A failed condition.
      • SKIPPED: A skipped condition.
      • ERRORED: An error condition.
      • STOPPED: A stopped condition.
      • (string) --

        • (list) --

          • (dict) --

            A collection of one or more problems, grouped by their result.

            • message (string) --

              A message about the unique problems' result.

            • problems (list) --

              Information about the problems.

              • (dict) --

                Represents a specific warning or failure.

                • run (dict) --

                  Information about the associated run.

                  • arn (string) --

                    The problem detail's ARN.

                  • name (string) --

                    The problem detail's name.

                • job (dict) --

                  Information about the associated job.

                  • arn (string) --

                    The problem detail's ARN.

                  • name (string) --

                    The problem detail's name.

                • suite (dict) --

                  Information about the associated suite.

                  • arn (string) --

                    The problem detail's ARN.

                  • name (string) --

                    The problem detail's name.

                • test (dict) --

                  Information about the associated test.

                  • arn (string) --

                    The problem detail's ARN.

                  • name (string) --

                    The problem detail's name.

                • device (dict) --

                  Information about the associated device.

                  • arn (string) --

                    The device's ARN.

                  • name (string) --

                    The device's display name.

                  • manufacturer (string) --

                    The device's manufacturer name.

                  • model (string) --

                    The device's model name.

                  • modelId (string) --

                    The device's model ID.

                  • formFactor (string) --

                    The device's form factor.

                    Allowed values include:

                    • PHONE: The phone form factor.
                    • TABLET: The tablet form factor.
                  • platform (string) --

                    The device's platform.

                    Allowed values include:

                    • ANDROID: The Android platform.
                    • IOS: The iOS platform.
                  • os (string) --

                    The device's operating system type.

                  • cpu (dict) --

                    Information about the device's CPU.

                    • frequency (string) --

                      The CPU's frequency.

                    • architecture (string) --

                      The CPU's architecture, for example x86 or ARM.

                    • clock (float) --

                      The clock speed of the device's CPU, expressed in hertz (Hz). For example, a 1.2 GHz CPU is expressed as 1200000000.

                  • resolution (dict) --

                    The resolution of the device.

                    • width (integer) --

                      The screen resolution's width, expressed in pixels.

                    • height (integer) --

                      The screen resolution's height, expressed in pixels.

                  • heapSize (integer) --

                    The device's heap size, expressed in bytes.

                  • memory (integer) --

                    The device's total memory size, expressed in bytes.

                  • image (string) --

                    The device's image name.

                  • carrier (string) --

                    The device's carrier.

                  • radio (string) --

                    The device's radio.

                  • remoteAccessEnabled (boolean) --

                    Specifies whether remote access has been enabled for the specified device.

                  • remoteDebugEnabled (boolean) --

                    This flag is set to true if remote debugging is enabled for the device.

                    Remote debugging is `no longer supported <https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html>`__ .

                  • fleetType (string) --

                    The type of fleet to which this device belongs. Possible values for fleet type are PRIVATE and PUBLIC.

                  • fleetName (string) --

                    The name of the fleet to which this device belongs.

                  • instances (list) --

                    The instances belonging to this device.

                    • (dict) --

                      Represents the device instance.

                      • arn (string) --

                        The Amazon Resource Name (ARN) of the device instance.

                      • deviceArn (string) --

                        The Amazon Resource Name (ARN) of the device.

                      • labels (list) --

                        An array of strings describing the device instance.

                        • (string) --
                      • status (string) --

                        The status of the device instance. Valid values are listed below.

                      • udid (string) --

                        Unique device identifier for the device instance.

                      • instanceProfile (dict) --

                        A object containing information about the instance profile.

                        • arn (string) --

                          The Amazon Resource Name (ARN) of the instance profile.

                        • packageCleanup (boolean) --

                          When set to true , Device Farm will remove app packages after a test run. The default value is false for private devices.

                        • excludeAppPackagesFromCleanup (list) --

                          An array of strings specifying the list of app packages that should not be cleaned up from the device after a test run is over.

                          The list of packages is only considered if you set packageCleanup to true .

                          • (string) --
                        • rebootAfterUse (boolean) --

                          When set to true , Device Farm will reboot the instance after a test run. The default value is true .

                        • name (string) --

                          The name of the instance profile.

                        • description (string) --

                          The description of the instance profile.

                  • availability (string) --

                    Reflects how likely a device will be available for a test run. It is currently available in the ListDevices and GetDevice API methods.

                • result (string) --

                  The problem's result.

                  Allowed values include:

                  • PENDING: A pending condition.
                  • PASSED: A passing condition.
                  • WARNED: A warning condition.
                  • FAILED: A failed condition.
                  • SKIPPED: A skipped condition.
                  • ERRORED: An error condition.
                  • STOPPED: A stopped condition.
                • message (string) --

                  A message about the problem's result.

    • NextToken (string) --

      A token to resume pagination.

class DeviceFarm.Paginator.ListUploads
paginator = client.get_paginator('list_uploads')
paginate(**kwargs)

Creates an iterator that will paginate through responses from DeviceFarm.Client.list_uploads().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    arn='string',
    type='ANDROID_APP'|'IOS_APP'|'WEB_APP'|'EXTERNAL_DATA'|'APPIUM_JAVA_JUNIT_TEST_PACKAGE'|'APPIUM_JAVA_TESTNG_TEST_PACKAGE'|'APPIUM_PYTHON_TEST_PACKAGE'|'APPIUM_NODE_TEST_PACKAGE'|'APPIUM_RUBY_TEST_PACKAGE'|'APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE'|'APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE'|'APPIUM_WEB_PYTHON_TEST_PACKAGE'|'APPIUM_WEB_NODE_TEST_PACKAGE'|'APPIUM_WEB_RUBY_TEST_PACKAGE'|'CALABASH_TEST_PACKAGE'|'INSTRUMENTATION_TEST_PACKAGE'|'UIAUTOMATION_TEST_PACKAGE'|'UIAUTOMATOR_TEST_PACKAGE'|'XCTEST_TEST_PACKAGE'|'XCTEST_UI_TEST_PACKAGE'|'APPIUM_JAVA_JUNIT_TEST_SPEC'|'APPIUM_JAVA_TESTNG_TEST_SPEC'|'APPIUM_PYTHON_TEST_SPEC'|'APPIUM_NODE_TEST_SPEC'|'APPIUM_RUBY_TEST_SPEC'|'APPIUM_WEB_JAVA_JUNIT_TEST_SPEC'|'APPIUM_WEB_JAVA_TESTNG_TEST_SPEC'|'APPIUM_WEB_PYTHON_TEST_SPEC'|'APPIUM_WEB_NODE_TEST_SPEC'|'APPIUM_WEB_RUBY_TEST_SPEC'|'INSTRUMENTATION_TEST_SPEC'|'XCTEST_UI_TEST_SPEC',
    PaginationConfig={
        'MaxItems': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • arn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the project for which you want to list uploads.

  • type (string) --

    The type of upload.

    Must be one of the following values:

    • ANDROID_APP: An Android upload.
    • IOS_APP: An iOS upload.
    • WEB_APP: A web application upload.
    • EXTERNAL_DATA: An external data upload.
    • APPIUM_JAVA_JUNIT_TEST_PACKAGE: An Appium Java JUnit test package upload.
    • APPIUM_JAVA_TESTNG_TEST_PACKAGE: An Appium Java TestNG test package upload.
    • APPIUM_PYTHON_TEST_PACKAGE: An Appium Python test package upload.
    • APPIUM_NODE_TEST_PACKAGE: An Appium Node.js test package upload.
    • APPIUM_RUBY_TEST_PACKAGE: An Appium Ruby test package upload.
    • APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE: An Appium Java JUnit test package upload for a web app.
    • APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE: An Appium Java TestNG test package upload for a web app.
    • APPIUM_WEB_PYTHON_TEST_PACKAGE: An Appium Python test package upload for a web app.
    • APPIUM_WEB_NODE_TEST_PACKAGE: An Appium Node.js test package upload for a web app.
    • APPIUM_WEB_RUBY_TEST_PACKAGE: An Appium Ruby test package upload for a web app.
    • CALABASH_TEST_PACKAGE: A Calabash test package upload.
    • INSTRUMENTATION_TEST_PACKAGE: An instrumentation upload.
    • UIAUTOMATION_TEST_PACKAGE: A uiautomation test package upload.
    • UIAUTOMATOR_TEST_PACKAGE: A uiautomator test package upload.
    • XCTEST_TEST_PACKAGE: An Xcode test package upload.
    • XCTEST_UI_TEST_PACKAGE: An Xcode UI test package upload.
    • APPIUM_JAVA_JUNIT_TEST_SPEC: An Appium Java JUnit test spec upload.
    • APPIUM_JAVA_TESTNG_TEST_SPEC: An Appium Java TestNG test spec upload.
    • APPIUM_PYTHON_TEST_SPEC: An Appium Python test spec upload.
    • APPIUM_NODE_TEST_SPEC: An Appium Node.js test spec upload.
    • APPIUM_RUBY_TEST_SPEC: An Appium Ruby test spec upload.
    • APPIUM_WEB_JAVA_JUNIT_TEST_SPEC: An Appium Java JUnit test spec upload for a web app.
    • APPIUM_WEB_JAVA_TESTNG_TEST_SPEC: An Appium Java TestNG test spec upload for a web app.
    • APPIUM_WEB_PYTHON_TEST_SPEC: An Appium Python test spec upload for a web app.
    • APPIUM_WEB_NODE_TEST_SPEC: An Appium Node.js test spec upload for a web app.
    • APPIUM_WEB_RUBY_TEST_SPEC: An Appium Ruby test spec upload for a web app.
    • INSTRUMENTATION_TEST_SPEC: An instrumentation test spec upload.
    • XCTEST_UI_TEST_SPEC: An Xcode UI test spec upload.
  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'uploads': [
        {
            'arn': 'string',
            'name': 'string',
            'created': datetime(2015, 1, 1),
            'type': 'ANDROID_APP'|'IOS_APP'|'WEB_APP'|'EXTERNAL_DATA'|'APPIUM_JAVA_JUNIT_TEST_PACKAGE'|'APPIUM_JAVA_TESTNG_TEST_PACKAGE'|'APPIUM_PYTHON_TEST_PACKAGE'|'APPIUM_NODE_TEST_PACKAGE'|'APPIUM_RUBY_TEST_PACKAGE'|'APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE'|'APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE'|'APPIUM_WEB_PYTHON_TEST_PACKAGE'|'APPIUM_WEB_NODE_TEST_PACKAGE'|'APPIUM_WEB_RUBY_TEST_PACKAGE'|'CALABASH_TEST_PACKAGE'|'INSTRUMENTATION_TEST_PACKAGE'|'UIAUTOMATION_TEST_PACKAGE'|'UIAUTOMATOR_TEST_PACKAGE'|'XCTEST_TEST_PACKAGE'|'XCTEST_UI_TEST_PACKAGE'|'APPIUM_JAVA_JUNIT_TEST_SPEC'|'APPIUM_JAVA_TESTNG_TEST_SPEC'|'APPIUM_PYTHON_TEST_SPEC'|'APPIUM_NODE_TEST_SPEC'|'APPIUM_RUBY_TEST_SPEC'|'APPIUM_WEB_JAVA_JUNIT_TEST_SPEC'|'APPIUM_WEB_JAVA_TESTNG_TEST_SPEC'|'APPIUM_WEB_PYTHON_TEST_SPEC'|'APPIUM_WEB_NODE_TEST_SPEC'|'APPIUM_WEB_RUBY_TEST_SPEC'|'INSTRUMENTATION_TEST_SPEC'|'XCTEST_UI_TEST_SPEC',
            'status': 'INITIALIZED'|'PROCESSING'|'SUCCEEDED'|'FAILED',
            'url': 'string',
            'metadata': 'string',
            'contentType': 'string',
            'message': 'string',
            'category': 'CURATED'|'PRIVATE'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Represents the result of a list uploads request.

    • uploads (list) --

      Information about the uploads.

      • (dict) --

        An app or a set of one or more tests to upload or that have been uploaded.

        • arn (string) --

          The upload's ARN.

        • name (string) --

          The upload's file name.

        • created (datetime) --

          When the upload was created.

        • type (string) --

          The upload's type.

          Must be one of the following values:

          • ANDROID_APP: An Android upload.
          • IOS_APP: An iOS upload.
          • WEB_APP: A web application upload.
          • EXTERNAL_DATA: An external data upload.
          • APPIUM_JAVA_JUNIT_TEST_PACKAGE: An Appium Java JUnit test package upload.
          • APPIUM_JAVA_TESTNG_TEST_PACKAGE: An Appium Java TestNG test package upload.
          • APPIUM_PYTHON_TEST_PACKAGE: An Appium Python test package upload.
          • APPIUM_NODE_TEST_PACKAGE: An Appium Node.js test package upload.
          • APPIUM_RUBY_TEST_PACKAGE: An Appium Ruby test package upload.
          • APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE: An Appium Java JUnit test package upload for web apps.
          • APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE: An Appium Java TestNG test package upload for web apps.
          • APPIUM_WEB_PYTHON_TEST_PACKAGE: An Appium Python test package upload for web apps.
          • APPIUM_WEB_NODE_TEST_PACKAGE: An Appium Node.js test package upload for web apps.
          • APPIUM_WEB_RUBY_TEST_PACKAGE: An Appium Ruby test package upload for web apps.
          • CALABASH_TEST_PACKAGE: A Calabash test package upload.
          • INSTRUMENTATION_TEST_PACKAGE: An instrumentation upload.
          • UIAUTOMATION_TEST_PACKAGE: A uiautomation test package upload.
          • UIAUTOMATOR_TEST_PACKAGE: A uiautomator test package upload.
          • XCTEST_TEST_PACKAGE: An Xcode test package upload.
          • XCTEST_UI_TEST_PACKAGE: An Xcode UI test package upload.
          • APPIUM_JAVA_JUNIT_TEST_SPEC: An Appium Java JUnit test spec upload.
          • APPIUM_JAVA_TESTNG_TEST_SPEC: An Appium Java TestNG test spec upload.
          • APPIUM_PYTHON_TEST_SPEC: An Appium Python test spec upload.
          • APPIUM_NODE_TEST_SPEC: An Appium Node.js test spec upload.
          • APPIUM_RUBY_TEST_SPEC: An Appium Ruby test spec upload.
          • APPIUM_WEB_JAVA_JUNIT_TEST_SPEC: An Appium Java JUnit test spec upload for a web app.
          • APPIUM_WEB_JAVA_TESTNG_TEST_SPEC: An Appium Java TestNG test spec upload for a web app.
          • APPIUM_WEB_PYTHON_TEST_SPEC: An Appium Python test spec upload for a web app.
          • APPIUM_WEB_NODE_TEST_SPEC: An Appium Node.js test spec upload for a web app.
          • APPIUM_WEB_RUBY_TEST_SPEC: An Appium Ruby test spec upload for a web app.
          • INSTRUMENTATION_TEST_SPEC: An instrumentation test spec upload.
          • XCTEST_UI_TEST_SPEC: An Xcode UI test spec upload.
        • status (string) --

          The upload's status.

          Must be one of the following values:

          • FAILED: A failed status.
          • INITIALIZED: An initialized status.
          • PROCESSING: A processing status.
          • SUCCEEDED: A succeeded status.
        • url (string) --

          The pre-signed Amazon S3 URL that was used to store a file through a corresponding PUT request.

        • metadata (string) --

          The upload's metadata. For example, for Android, this contains information that is parsed from the manifest and is displayed in the AWS Device Farm console after the associated app is uploaded.

        • contentType (string) --

          The upload's content type (for example, "application/octet-stream").

        • message (string) --

          A message about the upload's result.

        • category (string) --

          The upload's category. Allowed values include:

          • CURATED: An upload managed by AWS Device Farm.
          • PRIVATE: An upload managed by the AWS Device Farm customer.
    • NextToken (string) --

      A token to resume pagination.

class DeviceFarm.Paginator.ListVPCEConfigurations
paginator = client.get_paginator('list_vpce_configurations')
paginate(**kwargs)

Creates an iterator that will paginate through responses from DeviceFarm.Client.list_vpce_configurations().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
PaginationConfig (dict) --

A dictionary that provides parameters to control pagination.

  • MaxItems (integer) --

    The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

  • PageSize (integer) --

    The size of each page.

  • StartingToken (string) --

    A token to specify where to start paginating. This is the NextToken from a previous response.

Return type
dict
Returns
Response Syntax
{
    'vpceConfigurations': [
        {
            'arn': 'string',
            'vpceConfigurationName': 'string',
            'vpceServiceName': 'string',
            'serviceDnsName': 'string',
            'vpceConfigurationDescription': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --
    • vpceConfigurations (list) --

      An array of VPCEConfiguration objects containing information about your VPC endpoint configuration.

      • (dict) --

        Represents an Amazon Virtual Private Cloud (VPC) endpoint configuration.

        • arn (string) --

          The Amazon Resource Name (ARN) of the VPC endpoint configuration.

        • vpceConfigurationName (string) --

          The friendly name you give to your VPC endpoint configuration, to manage your configurations more easily.

        • vpceServiceName (string) --

          The name of the VPC endpoint service running inside your AWS account that you want Device Farm to test.

        • serviceDnsName (string) --

          The DNS name that maps to the private IP address of the service you want to access.

        • vpceConfigurationDescription (string) --

          An optional description, providing more details about your VPC endpoint configuration.

    • NextToken (string) --

      A token to resume pagination.