Class: Aws::CodeCommit::Types::BranchInfo

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-codecommit/types.rb

Overview

Returns information about a branch.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#branch_nameString

The name of the branch.

Returns:

  • (String)


801
802
803
804
805
806
# File 'lib/aws-sdk-codecommit/types.rb', line 801

class BranchInfo < Struct.new(
  :branch_name,
  :commit_id)
  SENSITIVE = []
  include Aws::Structure
end

#commit_idString

The ID of the last commit made to the branch.

Returns:

  • (String)


801
802
803
804
805
806
# File 'lib/aws-sdk-codecommit/types.rb', line 801

class BranchInfo < Struct.new(
  :branch_name,
  :commit_id)
  SENSITIVE = []
  include Aws::Structure
end