Class: Aws::SageMaker::Types::FileSystemDataSource

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

Overview

Note:

When making an API call, you may pass FileSystemDataSource data as a hash:

{
  file_system_id: "FileSystemId", # required
  file_system_access_mode: "rw", # required, accepts rw, ro
  file_system_type: "EFS", # required, accepts EFS, FSxLustre
  directory_path: "DirectoryPath", # required
}

Specifies a file system data source for a channel.

Instance Attribute Summary collapse

Instance Attribute Details

#directory_pathString

The full path to the directory to associate with the channel.

Returns:

  • (String)


9071
9072
9073
9074
9075
9076
9077
# File 'lib/aws-sdk-sagemaker/types.rb', line 9071

class FileSystemDataSource < Struct.new(
  :file_system_id,
  :file_system_access_mode,
  :file_system_type,
  :directory_path)
  include Aws::Structure
end

#file_system_access_modeString

The access mode of the mount of the directory associated with the channel. A directory can be mounted either in ‘ro` (read-only) or `rw` (read-write) mode.

Returns:

  • (String)


9071
9072
9073
9074
9075
9076
9077
# File 'lib/aws-sdk-sagemaker/types.rb', line 9071

class FileSystemDataSource < Struct.new(
  :file_system_id,
  :file_system_access_mode,
  :file_system_type,
  :directory_path)
  include Aws::Structure
end

#file_system_idString

The file system id.

Returns:

  • (String)


9071
9072
9073
9074
9075
9076
9077
# File 'lib/aws-sdk-sagemaker/types.rb', line 9071

class FileSystemDataSource < Struct.new(
  :file_system_id,
  :file_system_access_mode,
  :file_system_type,
  :directory_path)
  include Aws::Structure
end

#file_system_typeString

The file system type.

Returns:

  • (String)


9071
9072
9073
9074
9075
9076
9077
# File 'lib/aws-sdk-sagemaker/types.rb', line 9071

class FileSystemDataSource < Struct.new(
  :file_system_id,
  :file_system_access_mode,
  :file_system_type,
  :directory_path)
  include Aws::Structure
end