v1

latestOpenAPI 3.0.0Apache 2.0 License2026-07-1477335300.0 KB

Gets information about runs, given an AWS Device Farm project ARN.

post/#X-Amz-Target=DeviceFarm_20150623.ListRuns

Query parameters

nextTokenstring

Pagination token

Headers

X-Amz-Target'DeviceFarm_20150623.ListRuns' required

Request body

arnstring required

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

nextTokenstring

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.

Response

Success

nextTokenstring

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

Example response

{
  "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": "1472667509.852",
      "deviceMinutes": {
        "metered": 0,
        "total": 0,
        "unmetered": 0
      },
      "platform": "ANDROID",
      "result": "PENDING",
      "status": "RUNNING",
      "totalJobs": 3
    }
  ]
}