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

GetFileInput

import type { GetFileInput } from "https://aws-api.deno.dev/v0.3/services/codecommit.ts?docs=full";
interface GetFileInput {
commitSpecifier?: string | null;
filePath: string;
repositoryName: string;
}

§Properties

§
commitSpecifier?: string | null
[src]

The fully quaified reference that identifies the commit that contains the file. For example, you can specify a full commit ID, a tag, a branch name, or a reference such as refs/heads/master. If none is provided, the head commit is used.

§
filePath: string
[src]

The fully qualified path to the file, including the full name and extension of the file. For example, /examples/file.md is the fully qualified path to a file named file.md in a folder named examples.

§
repositoryName: string
[src]

The name of the repository that contains the file.