Class: Aws::CodeCommit::Types::ObjectTypes
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeCommit::Types::ObjectTypes
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codecommit/types.rb
 
Overview
Information about the type of an object in a merge operation.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #base  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of the object in the base commit of the merge.
 - 
  
    
      #destination  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of the object in the destination branch.
 - 
  
    
      #source  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of the object in the source branch.
 
Instance Attribute Details
#base ⇒ String
The type of the object in the base commit of the merge.
      5188 5189 5190 5191 5192 5193 5194  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 5188 class ObjectTypes < Struct.new( :source, :destination, :base) SENSITIVE = [] include Aws::Structure end  | 
  
#destination ⇒ String
The type of the object in the destination branch.
      5188 5189 5190 5191 5192 5193 5194  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 5188 class ObjectTypes < Struct.new( :source, :destination, :base) SENSITIVE = [] include Aws::Structure end  | 
  
#source ⇒ String
The type of the object in the source branch.
      5188 5189 5190 5191 5192 5193 5194  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 5188 class ObjectTypes < Struct.new( :source, :destination, :base) SENSITIVE = [] include Aws::Structure end  |