Class: Aws::DeviceFarm::Types::ListUniqueProblemsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::ListUniqueProblemsResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devicefarm/types.rb
Overview
Represents the result of a list unique problems request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If the number of items that are returned is significantly large, this is an identifier that is also returned.
-
#unique_problems ⇒ Hash<String,Array<Types::UniqueProblem>>
Information about the unique problems.
Instance Attribute Details
#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.
3594 3595 3596 3597 3598 3599 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 3594 class ListUniqueProblemsResult < Struct.new( :unique_problems, :next_token) SENSITIVE = [] include Aws::Structure end |
#unique_problems ⇒ Hash<String,Array<Types::UniqueProblem>>
Information about the unique problems.
Allowed values include:
-
PENDING
-
PASSED
-
WARNED
-
FAILED
-
SKIPPED
-
ERRORED
-
STOPPED
3594 3595 3596 3597 3598 3599 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 3594 class ListUniqueProblemsResult < Struct.new( :unique_problems, :next_token) SENSITIVE = [] include Aws::Structure end |