Class: Aws::CodeCommit::Types::BatchGetCommitsInput
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeCommit::Types::BatchGetCommitsInput
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codecommit/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #commit_ids  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The full commit IDs of the commits to get information about.
 - 
  
    
      #repository_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the repository that contains the commits.
 
Instance Attribute Details
#commit_ids ⇒ Array<String>
The full commit IDs of the commits to get information about.
<note markdown=“1”> You must supply the full SHA IDs of each commit. You cannot use shortened SHA IDs.
</note>
  
      624 625 626 627 628 629  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 624 class BatchGetCommitsInput < Struct.new( :commit_ids, :repository_name) SENSITIVE = [] include Aws::Structure end  | 
  
#repository_name ⇒ String
The name of the repository that contains the commits.
      624 625 626 627 628 629  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 624 class BatchGetCommitsInput < Struct.new( :commit_ids, :repository_name) SENSITIVE = [] include Aws::Structure end  |