Class: Aws::CodeCommit::Types::MergeMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::MergeMetadata
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Returns information about a merge or potential merge between a source reference and a destination reference in a pull request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#is_merged ⇒ Boolean
A Boolean value indicating whether the merge has been made.
-
#merge_commit_id ⇒ String
The commit ID for the merge commit, if any.
-
#merge_option ⇒ String
The merge strategy used in the merge.
-
#merged_by ⇒ String
The Amazon Resource Name (ARN) of the user who merged the branches.
Instance Attribute Details
#is_merged ⇒ Boolean
A Boolean value indicating whether the merge has been made.
4880 4881 4882 4883 4884 4885 4886 4887 |
# File 'lib/aws-sdk-codecommit/types.rb', line 4880 class MergeMetadata < Struct.new( :is_merged, :merged_by, :merge_commit_id, :merge_option) SENSITIVE = [] include Aws::Structure end |
#merge_commit_id ⇒ String
The commit ID for the merge commit, if any.
4880 4881 4882 4883 4884 4885 4886 4887 |
# File 'lib/aws-sdk-codecommit/types.rb', line 4880 class MergeMetadata < Struct.new( :is_merged, :merged_by, :merge_commit_id, :merge_option) SENSITIVE = [] include Aws::Structure end |
#merge_option ⇒ String
The merge strategy used in the merge.
4880 4881 4882 4883 4884 4885 4886 4887 |
# File 'lib/aws-sdk-codecommit/types.rb', line 4880 class MergeMetadata < Struct.new( :is_merged, :merged_by, :merge_commit_id, :merge_option) SENSITIVE = [] include Aws::Structure end |
#merged_by ⇒ String
The Amazon Resource Name (ARN) of the user who merged the branches.
4880 4881 4882 4883 4884 4885 4886 4887 |
# File 'lib/aws-sdk-codecommit/types.rb', line 4880 class MergeMetadata < Struct.new( :is_merged, :merged_by, :merge_commit_id, :merge_option) SENSITIVE = [] include Aws::Structure end |