Class: Aws::SageMaker::Types::FileSystemConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb

Overview

The Amazon Elastic File System storage configuration for a SageMaker image.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#default_gidInteger

The default POSIX group ID (GID). If not specified, defaults to 100.

Returns:

  • (Integer)


19352
19353
19354
19355
19356
19357
19358
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 19352

class FileSystemConfig < Struct.new(
  :mount_path,
  :default_uid,
  :default_gid)
  SENSITIVE = []
  include Aws::Structure
end

#default_uidInteger

The default POSIX user ID (UID). If not specified, defaults to 1000.

Returns:

  • (Integer)


19352
19353
19354
19355
19356
19357
19358
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 19352

class FileSystemConfig < Struct.new(
  :mount_path,
  :default_uid,
  :default_gid)
  SENSITIVE = []
  include Aws::Structure
end

#mount_pathString

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.

Returns:

  • (String)


19352
19353
19354
19355
19356
19357
19358
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 19352

class FileSystemConfig < Struct.new(
  :mount_path,
  :default_uid,
  :default_gid)
  SENSITIVE = []
  include Aws::Structure
end