Class: Aws::CodeCommit::Types::GetBlobInput
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeCommit::Types::GetBlobInput
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codecommit/types.rb
 
Overview
Represents the input of a get blob operation.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #blob_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the blob, which is its SHA-1 pointer.
 - 
  
    
      #repository_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the repository that contains the blob.
 
Instance Attribute Details
#blob_id ⇒ String
The ID of the blob, which is its SHA-1 pointer.
      2694 2695 2696 2697 2698 2699  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 2694 class GetBlobInput < Struct.new( :repository_name, :blob_id) SENSITIVE = [] include Aws::Structure end  | 
  
#repository_name ⇒ String
The name of the repository that contains the blob.
      2694 2695 2696 2697 2698 2699  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 2694 class GetBlobInput < Struct.new( :repository_name, :blob_id) SENSITIVE = [] include Aws::Structure end  |