Class: Aws::CodeCommit::Types::SourceFileSpecifier
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeCommit::Types::SourceFileSpecifier
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codecommit/types.rb
 
Overview
Information about a source file that is part of changes made in a commit.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #file_path  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The full path to the file, including the name of the file.
 - 
  
    
      #is_move  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Whether to remove the source file from the parent commit.
 
Instance Attribute Details
#file_path ⇒ String
The full path to the file, including the name of the file.
      6551 6552 6553 6554 6555 6556  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 6551 class SourceFileSpecifier < Struct.new( :file_path, :is_move) SENSITIVE = [] include Aws::Structure end  | 
  
#is_move ⇒ Boolean
Whether to remove the source file from the parent commit.
      6551 6552 6553 6554 6555 6556  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 6551 class SourceFileSpecifier < Struct.new( :file_path, :is_move) SENSITIVE = [] include Aws::Structure end  |