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

ListCodeReviewsRequest

import type { ListCodeReviewsRequest } from "https://aws-api.deno.dev/v0.4/services/codegurureviewer.ts?docs=full";
interface ListCodeReviewsRequest {
MaxResults?: number | null;
NextToken?: string | null;
ProviderTypes?: ProviderType[] | null;
RepositoryNames?: string[] | null;
States?: JobState[] | null;
Type: Type;
}

§Properties

§
MaxResults?: number | null
[src]

The maximum number of results that are returned per call. The default is 100.

§
NextToken?: string | null
[src]

If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.

§
ProviderTypes?: ProviderType[] | null
[src]

List of provider types for filtering that needs to be applied before displaying the result. For example, providerTypes=[GitHub] lists code reviews from GitHub.

§
RepositoryNames?: string[] | null
[src]

List of repository names for filtering that needs to be applied before displaying the result.

§
States?: JobState[] | null
[src]

List of states for filtering that needs to be applied before displaying the result. For example, states=[Pending] lists code reviews in the Pending state.

The valid code review states are:

  • Completed: The code review is complete.
  • Pending: The code review started and has not completed or failed.
  • Failed: The code review failed.
  • Deleting: The code review is being deleted.
§
Type: Type
[src]

The type of code reviews to list in the response.