Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ListUniqueProblemsResult

import type { ListUniqueProblemsResult } from "https://aws-api.deno.dev/v0.4/services/devicefarm.ts?docs=full";

Represents the result of a list unique problems request.

interface ListUniqueProblemsResult {
nextToken?: string | null;
uniqueProblems?: [key in ExecutionResult]: UniqueProblem[] | null | undefined | null;
}

§Properties

§
nextToken?: string | null
[src]

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.

§
uniqueProblems?: [key in ExecutionResult]: UniqueProblem[] | null | undefined | null
[src]

Information about the unique problems.

Allowed values include:

  • PENDING
  • PASSED
  • WARNED
  • FAILED
  • SKIPPED
  • ERRORED
  • STOPPED