Class: Aws::CodeCommit::Types::GetMergeCommitOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::GetMergeCommitOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#base_commit_id ⇒ String
The commit ID of the merge base.
-
#destination_commit_id ⇒ String
The commit ID of the destination commit specifier that was used in the merge evaluation.
-
#merged_commit_id ⇒ String
The commit ID for the merge commit created when the source branch was merged into the destination branch.
-
#source_commit_id ⇒ String
The commit ID of the source commit specifier that was used in the merge evaluation.
Instance Attribute Details
#base_commit_id ⇒ String
The commit ID of the merge base.
3265 3266 3267 3268 3269 3270 3271 3272 |
# File 'lib/aws-sdk-codecommit/types.rb', line 3265 class GetMergeCommitOutput < Struct.new( :source_commit_id, :destination_commit_id, :base_commit_id, :merged_commit_id) SENSITIVE = [] include Aws::Structure end |
#destination_commit_id ⇒ String
The commit ID of the destination commit specifier that was used in the merge evaluation.
3265 3266 3267 3268 3269 3270 3271 3272 |
# File 'lib/aws-sdk-codecommit/types.rb', line 3265 class GetMergeCommitOutput < Struct.new( :source_commit_id, :destination_commit_id, :base_commit_id, :merged_commit_id) SENSITIVE = [] include Aws::Structure end |
#merged_commit_id ⇒ String
The commit ID for the merge commit created when the source branch was merged into the destination branch. If the fast-forward merge strategy was used, there is no merge commit.
3265 3266 3267 3268 3269 3270 3271 3272 |
# File 'lib/aws-sdk-codecommit/types.rb', line 3265 class GetMergeCommitOutput < Struct.new( :source_commit_id, :destination_commit_id, :base_commit_id, :merged_commit_id) SENSITIVE = [] include Aws::Structure end |
#source_commit_id ⇒ String
The commit ID of the source commit specifier that was used in the merge evaluation.
3265 3266 3267 3268 3269 3270 3271 3272 |
# File 'lib/aws-sdk-codecommit/types.rb', line 3265 class GetMergeCommitOutput < Struct.new( :source_commit_id, :destination_commit_id, :base_commit_id, :merged_commit_id) SENSITIVE = [] include Aws::Structure end |