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

CreateBranchInput

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

Represents the input of a create branch operation.

interface CreateBranchInput {
branchName: string;
commitId: string;
repositoryName: string;
}

§Properties

§
branchName: string
[src]

The name of the new branch to create.

§
commitId: string
[src]

The ID of the commit to point the new branch to.

§
repositoryName: string
[src]

The name of the repository in which you want to create the new branch.