Class: Aws::CodeCommit::Types::CreateCommitOutput
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeCommit::Types::CreateCommitOutput
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codecommit/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #commit_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The full commit ID of the commit that contains your committed file changes.
 - 
  
    
      #files_added  ⇒ Array<Types::FileMetadata> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The files added as part of the committed file changes.
 - 
  
    
      #files_deleted  ⇒ Array<Types::FileMetadata> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The files deleted as part of the committed file changes.
 - 
  
    
      #files_updated  ⇒ Array<Types::FileMetadata> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The files updated as part of the commited file changes.
 - 
  
    
      #tree_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The full SHA-1 pointer of the tree information for the commit that contains the commited file changes.
 
Instance Attribute Details
#commit_id ⇒ String
The full commit ID of the commit that contains your committed file changes.
      1492 1493 1494 1495 1496 1497 1498 1499 1500  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 1492 class CreateCommitOutput < Struct.new( :commit_id, :tree_id, :files_added, :files_updated, :files_deleted) SENSITIVE = [] include Aws::Structure end  | 
  
#files_added ⇒ Array<Types::FileMetadata>
The files added as part of the committed file changes.
      1492 1493 1494 1495 1496 1497 1498 1499 1500  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 1492 class CreateCommitOutput < Struct.new( :commit_id, :tree_id, :files_added, :files_updated, :files_deleted) SENSITIVE = [] include Aws::Structure end  | 
  
#files_deleted ⇒ Array<Types::FileMetadata>
The files deleted as part of the committed file changes.
      1492 1493 1494 1495 1496 1497 1498 1499 1500  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 1492 class CreateCommitOutput < Struct.new( :commit_id, :tree_id, :files_added, :files_updated, :files_deleted) SENSITIVE = [] include Aws::Structure end  | 
  
#files_updated ⇒ Array<Types::FileMetadata>
The files updated as part of the commited file changes.
      1492 1493 1494 1495 1496 1497 1498 1499 1500  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 1492 class CreateCommitOutput < Struct.new( :commit_id, :tree_id, :files_added, :files_updated, :files_deleted) SENSITIVE = [] include Aws::Structure end  | 
  
#tree_id ⇒ String
The full SHA-1 pointer of the tree information for the commit that contains the commited file changes.
      1492 1493 1494 1495 1496 1497 1498 1499 1500  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 1492 class CreateCommitOutput < Struct.new( :commit_id, :tree_id, :files_added, :files_updated, :files_deleted) SENSITIVE = [] include Aws::Structure end  |