Class: Aws::CodeCommit::Types::BranchInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::BranchInfo
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Returns information about a branch.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#branch_name ⇒ String
The name of the branch.
-
#commit_id ⇒ String
The ID of the last commit made to the branch.
Instance Attribute Details
#branch_name ⇒ String
The name of the branch.
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_id ⇒ String
The ID of the last commit made to the branch.
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 |