You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CodeCommit::Types::MergeBranchesByFastForwardInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing MergeBranchesByFastForwardInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  repository_name: "RepositoryName", # required
  source_commit_specifier: "CommitName", # required
  destination_commit_specifier: "CommitName", # required
  target_branch: "BranchName",
}

Instance Attribute Summary collapse

Instance Attribute Details

#destination_commit_specifierString

The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

Returns:

  • (String)

    The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

#repository_nameString

The name of the repository where you want to merge two branches.

Returns:

  • (String)

    The name of the repository where you want to merge two branches.

#source_commit_specifierString

The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

Returns:

  • (String)

    The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

#target_branchString

The branch where the merge is applied.

Returns:

  • (String)

    The branch where the merge is applied.