Class: Aws::SageMaker::Types::FileSystemConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::FileSystemConfig
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
The Amazon Elastic File System storage configuration for a SageMaker AI image.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #default_gid  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The default POSIX group ID (GID).
 - 
  
    
      #default_uid  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The default POSIX user ID (UID).
 - 
  
    
      #mount_path  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The path within the image to mount the user’s EFS home directory.
 
Instance Attribute Details
#default_gid ⇒ Integer
The default POSIX group ID (GID). If not specified, defaults to ‘100`.
      21900 21901 21902 21903 21904 21905 21906  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 21900 class FileSystemConfig < Struct.new( :mount_path, :default_uid, :default_gid) SENSITIVE = [] include Aws::Structure end  | 
  
#default_uid ⇒ Integer
The default POSIX user ID (UID). If not specified, defaults to ‘1000`.
      21900 21901 21902 21903 21904 21905 21906  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 21900 class FileSystemConfig < Struct.new( :mount_path, :default_uid, :default_gid) SENSITIVE = [] include Aws::Structure end  | 
  
#mount_path ⇒ String
The path within the image to mount the user’s EFS home directory. The directory should be empty. If not specified, defaults to /home/sagemaker-user.
      21900 21901 21902 21903 21904 21905 21906  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 21900 class FileSystemConfig < Struct.new( :mount_path, :default_uid, :default_gid) SENSITIVE = [] include Aws::Structure end  |