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

GetDifferencesInput

import type { GetDifferencesInput } from "https://aws-api.deno.dev/v0.3/services/codecommit.ts?docs=full";
interface GetDifferencesInput {
afterCommitSpecifier: string;
afterPath?: string | null;
beforeCommitSpecifier?: string | null;
beforePath?: string | null;
MaxResults?: number | null;
NextToken?: string | null;
repositoryName: string;
}

§Properties

§
afterCommitSpecifier: string
[src]

The branch, tag, HEAD, or other fully qualified reference used to identify a commit.

§
afterPath?: string | null
[src]

The file path in which to check differences. Limits the results to this path. Can also be used to specify the changed name of a directory or folder, if it has changed. If not specified, differences are shown for all paths.

§
beforeCommitSpecifier?: string | null
[src]

The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, the full commit ID). Optional. If not specified, all changes before the afterCommitSpecifier value are shown. If you do not use beforeCommitSpecifier in your request, consider limiting the results with maxResults.

§
beforePath?: string | null
[src]

The file path in which to check for differences. Limits the results to this path. Can also be used to specify the previous name of a directory or folder. If beforePath and afterPath are not specified, differences are shown for all paths.

§
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.

§
repositoryName: string
[src]

The name of the repository where you want to get differences.