Skip to main content

unique_problems

Creates, updates, deletes, gets or lists an unique_problems resource.

Overview

Nameunique_problems
TypeResource
Idaws.devicefarm.unique_problems

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_tokenstringIf 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_problemsobjectInformation about the unique problems. Allowed values include: PENDING PASSED WARNED FAILED SKIPPED ERRORED STOPPED

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_unique_problemsselectregionGets 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;