Class: Aws::CodeCommit::Types::MergeHunkDetail
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeCommit::Types::MergeHunkDetail
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codecommit/types.rb
 
Overview
Information about the details of a merge hunk that contains a conflict in a merge or pull request operation.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #end_line  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The end position of the hunk in the merge result.
 - 
  
    
      #hunk_content  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The base-64 encoded content of the hunk merged region that might contain a conflict.
 - 
  
    
      #start_line  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The start position of the hunk in the merge result.
 
Instance Attribute Details
#end_line ⇒ Integer
The end position of the hunk in the merge result.
      4853 4854 4855 4856 4857 4858 4859  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 4853 class MergeHunkDetail < Struct.new( :start_line, :end_line, :hunk_content) SENSITIVE = [] include Aws::Structure end  | 
  
#hunk_content ⇒ String
The base-64 encoded content of the hunk merged region that might contain a conflict.
      4853 4854 4855 4856 4857 4858 4859  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 4853 class MergeHunkDetail < Struct.new( :start_line, :end_line, :hunk_content) SENSITIVE = [] include Aws::Structure end  | 
  
#start_line ⇒ Integer
The start position of the hunk in the merge result.
      4853 4854 4855 4856 4857 4858 4859  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 4853 class MergeHunkDetail < Struct.new( :start_line, :end_line, :hunk_content) SENSITIVE = [] include Aws::Structure end  |