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

GetCommentsForComparedCommitInput

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

§Properties

§
afterCommitId: string
[src]

To establish the directionality of the comparison, the full commit ID of the after commit.

§
beforeCommitId?: string | null
[src]

To establish the directionality of the comparison, the full commit ID of the before commit.

§
maxResults?: number | null
[src]

A non-zero, non-negative integer used to limit the number of returned results. The default is 100 comments, but you can configure up to 500.

§
nextToken?: string | null
[src]

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

§
repositoryName: string
[src]

The name of the repository where you want to compare commits.