Class: Aws::CodeCommit::Types::ConflictResolution
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeCommit::Types::ConflictResolution
 
 
- Defined in:
 - gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb
 
Overview
If AUTOMERGE is the conflict resolution strategy, a list of inputs to use when resolving conflicts during a merge.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #delete_files  ⇒ Array<Types::DeleteFileEntry> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Files to be deleted as part of the merge conflict resolution.
 - 
  
    
      #replace_contents  ⇒ Array<Types::ReplaceContentEntry> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Files to have content replaced as part of the merge conflict resolution.
 - 
  
    
      #set_file_modes  ⇒ Array<Types::SetFileModeEntry> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
File modes that are set as part of the merge conflict resolution.
 
Instance Attribute Details
#delete_files ⇒ Array<Types::DeleteFileEntry>
Files to be deleted as part of the merge conflict resolution.
      1293 1294 1295 1296 1297 1298 1299  | 
    
      # File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 1293 class ConflictResolution < Struct.new( :replace_contents, :delete_files, :set_file_modes) SENSITIVE = [] include Aws::Structure end  | 
  
#replace_contents ⇒ Array<Types::ReplaceContentEntry>
Files to have content replaced as part of the merge conflict resolution.
      1293 1294 1295 1296 1297 1298 1299  | 
    
      # File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 1293 class ConflictResolution < Struct.new( :replace_contents, :delete_files, :set_file_modes) SENSITIVE = [] include Aws::Structure end  | 
  
#set_file_modes ⇒ Array<Types::SetFileModeEntry>
File modes that are set as part of the merge conflict resolution.
      1293 1294 1295 1296 1297 1298 1299  | 
    
      # File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 1293 class ConflictResolution < Struct.new( :replace_contents, :delete_files, :set_file_modes) SENSITIVE = [] include Aws::Structure end  |