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

FileMetadata

import type { FileMetadata } from "https://aws-api.deno.dev/v0.3/services/codecommit.ts?docs=full";

A file to be added, updated, or deleted as part of a commit.

interface FileMetadata {
absolutePath?: string | null;
blobId?: string | null;
fileMode?: FileModeTypeEnum | null;
}

§Properties

§
absolutePath?: string | null
[src]

The full path to the file to be added or updated, including the name of the file.

§
blobId?: string | null
[src]

The blob ID that contains the file information.

§
fileMode?: FileModeTypeEnum | null
[src]

The extrapolated file mode permissions for the file. Valid values include EXECUTABLE and NORMAL.