Class: Aws::CodeCommit::Types::GetFileOutput
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeCommit::Types::GetFileOutput
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codecommit/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #blob_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The blob ID of the object that represents the file content.
 - 
  
    
      #commit_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The full commit ID of the commit that contains the content returned by GetFile.
 - 
  
    
      #file_content  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The base-64 encoded binary data object that represents the content of the file.
 - 
  
    
      #file_mode  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The extrapolated file mode permissions of the blob.
 - 
  
    
      #file_path  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The fully qualified path to the specified file.
 - 
  
    
      #file_size  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The size of the contents of the file, in bytes.
 
Instance Attribute Details
#blob_id ⇒ String
The blob ID of the object that represents the file content.
      3118 3119 3120 3121 3122 3123 3124 3125 3126 3127  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 3118 class GetFileOutput < Struct.new( :commit_id, :blob_id, :file_path, :file_mode, :file_size, :file_content) SENSITIVE = [] include Aws::Structure end  | 
  
#commit_id ⇒ String
The full commit ID of the commit that contains the content returned by GetFile.
      3118 3119 3120 3121 3122 3123 3124 3125 3126 3127  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 3118 class GetFileOutput < Struct.new( :commit_id, :blob_id, :file_path, :file_mode, :file_size, :file_content) SENSITIVE = [] include Aws::Structure end  | 
  
#file_content ⇒ String
The base-64 encoded binary data object that represents the content of the file.
      3118 3119 3120 3121 3122 3123 3124 3125 3126 3127  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 3118 class GetFileOutput < Struct.new( :commit_id, :blob_id, :file_path, :file_mode, :file_size, :file_content) SENSITIVE = [] include Aws::Structure end  | 
  
#file_mode ⇒ String
The extrapolated file mode permissions of the blob. Valid values include strings such as EXECUTABLE and not numeric values.
<note markdown=“1”> The file mode permissions returned by this API are not the standard file mode permission values, such as 100644, but rather extrapolated values. See the supported return values.
</note>
  
      3118 3119 3120 3121 3122 3123 3124 3125 3126 3127  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 3118 class GetFileOutput < Struct.new( :commit_id, :blob_id, :file_path, :file_mode, :file_size, :file_content) SENSITIVE = [] include Aws::Structure end  | 
  
#file_path ⇒ String
The fully qualified path to the specified file. Returns the name and extension of the file.
      3118 3119 3120 3121 3122 3123 3124 3125 3126 3127  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 3118 class GetFileOutput < Struct.new( :commit_id, :blob_id, :file_path, :file_mode, :file_size, :file_content) SENSITIVE = [] include Aws::Structure end  | 
  
#file_size ⇒ Integer
The size of the contents of the file, in bytes.
      3118 3119 3120 3121 3122 3123 3124 3125 3126 3127  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 3118 class GetFileOutput < Struct.new( :commit_id, :blob_id, :file_path, :file_mode, :file_size, :file_content) SENSITIVE = [] include Aws::Structure end  |