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

ListPullRequestsInput

import type { ListPullRequestsInput } from "https://aws-api.deno.dev/v0.3/services/codecommit.ts?docs=full";
interface ListPullRequestsInput {
authorArn?: string | null;
maxResults?: number | null;
nextToken?: string | null;
pullRequestStatus?: PullRequestStatusEnum | null;
repositoryName: string;
}

§Properties

§
authorArn?: string | null
[src]

Optional. The Amazon Resource Name (ARN) of the user who created the pull request. If used, this filters the results to pull requests created by that user.

§
maxResults?: number | null
[src]

A non-zero, non-negative integer used to limit the number of returned results.

§
nextToken?: string | null
[src]

An enumeration token that, when provided in a request, returns the next batch of the results.

§
pullRequestStatus?: PullRequestStatusEnum | null
[src]

Optional. The status of the pull request. If used, this refines the results to the pull requests that match the specified status.

§
repositoryName: string
[src]

The name of the repository for which you want to list pull requests.