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

GetMergeConflictsOutput

import type { GetMergeConflictsOutput } from "https://aws-api.deno.dev/v0.3/services/codecommit.ts?docs=full";
interface GetMergeConflictsOutput {
baseCommitId?: string | null;
conflictMetadataList: ConflictMetadata[];
destinationCommitId: string;
mergeable: boolean;
nextToken?: string | null;
sourceCommitId: string;
}

§Properties

§
baseCommitId?: string | null
[src]

The commit ID of the merge base.

§
conflictMetadataList: ConflictMetadata[]
[src]

A list of metadata for any conflicting files. If the specified merge strategy is FAST_FORWARD_MERGE, this list is always empty.

§
destinationCommitId: string
[src]

The commit ID of the destination commit specifier that was used in the merge evaluation.

§
mergeable: boolean
[src]

A Boolean value that indicates whether the code is mergeable by the specified merge option.

§
nextToken?: string | null
[src]

An enumeration token that can be used in a request to return the next batch of the results.

§
sourceCommitId: string
[src]

The commit ID of the source commit specifier that was used in the merge evaluation.