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

CreateCommitOutput

import type { CreateCommitOutput } from "https://aws-api.deno.dev/v0.3/services/codecommit.ts?docs=full";
interface CreateCommitOutput {
commitId?: string | null;
filesAdded?: FileMetadata[] | null;
filesDeleted?: FileMetadata[] | null;
filesUpdated?: FileMetadata[] | null;
treeId?: string | null;
}

§Properties

§
commitId?: string | null
[src]

The full commit ID of the commit that contains your committed file changes.

§
filesAdded?: FileMetadata[] | null
[src]

The files added as part of the committed file changes.

§
filesDeleted?: FileMetadata[] | null
[src]

The files deleted as part of the committed file changes.

§
filesUpdated?: FileMetadata[] | null
[src]

The files updated as part of the commited file changes.

§
treeId?: string | null
[src]

The full SHA-1 pointer of the tree information for the commit that contains the commited file changes.