unique_problems
Creates, updates, deletes, gets or lists an unique_problems resource.
Overview
| Name | unique_problems |
| Type | Resource |
| Id | aws.devicefarm.unique_problems |
Fields
The following fields are returned by SELECT queries:
- list_unique_problems
| Name | Datatype | Description |
|---|---|---|
next_token | string | 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. |
unique_problems | object | Information about the unique problems. Allowed values include: PENDING PASSED WARNED FAILED SKIPPED ERRORED STOPPED |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_unique_problems | select | region | Gets information about unique problems, such as exceptions or crashes. Unique problems are defined as a single instance of an error across a run, job, or suite. For example, if a call in your application consistently raises an exception (OutOfBoundsException in MyActivity.java:386), ListUniqueProblems returns a single entry instead of many individual entries for that exception. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_unique_problems
Gets information about unique problems, such as exceptions or crashes. Unique problems are defined as a single instance of an error across a run, job, or suite. For example, if a call in your application consistently raises an exception (OutOfBoundsException in MyActivity.java:386), ListUniqueProblems returns a single entry instead of many individual entries for that exception.
SELECT
next_token,
unique_problems
FROM aws.devicefarm.unique_problems
WHERE region = '{{ region }}' -- required
;