Class: Aws::CodeCommit::Types::GetCommitInput
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeCommit::Types::GetCommitInput
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codecommit/types.rb
 
Overview
Represents the input of a get commit operation.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #commit_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The commit ID.
 - 
  
    
      #repository_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the repository to which the commit was made.
 
Instance Attribute Details
#commit_id ⇒ String
The commit ID. Commit IDs are the full SHA ID of the commit.
      2958 2959 2960 2961 2962 2963  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 2958 class GetCommitInput < Struct.new( :repository_name, :commit_id) SENSITIVE = [] include Aws::Structure end  | 
  
#repository_name ⇒ String
The name of the repository to which the commit was made.
      2958 2959 2960 2961 2962 2963  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 2958 class GetCommitInput < Struct.new( :repository_name, :commit_id) SENSITIVE = [] include Aws::Structure end  |