Class: Aws::CodeCommit::Types::SymbolicLink
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeCommit::Types::SymbolicLink
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codecommit/types.rb
 
Overview
Returns information about a symbolic link in a repository folder.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #absolute_path  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The fully qualified path to the folder that contains the symbolic link.
 - 
  
    
      #blob_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The blob ID that contains the information about the symbolic link.
 - 
  
    
      #file_mode  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The file mode permissions of the blob that cotains information about the symbolic link.
 - 
  
    
      #relative_path  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The relative path of the symbolic link from the folder where the query originated.
 
Instance Attribute Details
#absolute_path ⇒ String
The fully qualified path to the folder that contains the symbolic link.
      6608 6609 6610 6611 6612 6613 6614 6615  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 6608 class SymbolicLink < Struct.new( :blob_id, :absolute_path, :relative_path, :file_mode) SENSITIVE = [] include Aws::Structure end  | 
  
#blob_id ⇒ String
The blob ID that contains the information about the symbolic link.
      6608 6609 6610 6611 6612 6613 6614 6615  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 6608 class SymbolicLink < Struct.new( :blob_id, :absolute_path, :relative_path, :file_mode) SENSITIVE = [] include Aws::Structure end  | 
  
#file_mode ⇒ String
The file mode permissions of the blob that cotains information about the symbolic link.
      6608 6609 6610 6611 6612 6613 6614 6615  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 6608 class SymbolicLink < Struct.new( :blob_id, :absolute_path, :relative_path, :file_mode) SENSITIVE = [] include Aws::Structure end  | 
  
#relative_path ⇒ String
The relative path of the symbolic link from the folder where the query originated.
      6608 6609 6610 6611 6612 6613 6614 6615  | 
    
      # File 'lib/aws-sdk-codecommit/types.rb', line 6608 class SymbolicLink < Struct.new( :blob_id, :absolute_path, :relative_path, :file_mode) SENSITIVE = [] include Aws::Structure end  |