Class: Aws::SageMaker::Types::CustomFileSystem

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

Overview

Note:

CustomFileSystem is a union - when making an API calls you must set exactly one of the members.

Note:

CustomFileSystem is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of CustomFileSystem corresponding to the set member.

A file system, created by you, that you assign to a user profile or space for an Amazon SageMaker AI Domain. Permitted users can access this file system in Amazon SageMaker AI Studio.

Defined Under Namespace

Classes: EfsFileSystem, FSxLustreFileSystem, S3FileSystem, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#efs_file_systemTypes::EFSFileSystem

A custom file system in Amazon EFS.



12287
12288
12289
12290
12291
12292
12293
12294
12295
12296
12297
12298
12299
12300
# File 'lib/aws-sdk-sagemaker/types.rb', line 12287

class CustomFileSystem < Struct.new(
  :efs_file_system,
  :f_sx_lustre_file_system,
  :s3_file_system,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class EfsFileSystem < CustomFileSystem; end
  class FSxLustreFileSystem < CustomFileSystem; end
  class S3FileSystem < CustomFileSystem; end
  class Unknown < CustomFileSystem; end
end

#f_sx_lustre_file_systemTypes::FSxLustreFileSystem

A custom file system in Amazon FSx for Lustre.



12287
12288
12289
12290
12291
12292
12293
12294
12295
12296
12297
12298
12299
12300
# File 'lib/aws-sdk-sagemaker/types.rb', line 12287

class CustomFileSystem < Struct.new(
  :efs_file_system,
  :f_sx_lustre_file_system,
  :s3_file_system,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class EfsFileSystem < CustomFileSystem; end
  class FSxLustreFileSystem < CustomFileSystem; end
  class S3FileSystem < CustomFileSystem; end
  class Unknown < CustomFileSystem; end
end

#s3_file_systemTypes::S3FileSystem

A custom file system in Amazon S3. This is only supported in Amazon SageMaker Unified Studio.

Returns:



12287
12288
12289
12290
12291
12292
12293
12294
12295
12296
12297
12298
12299
12300
# File 'lib/aws-sdk-sagemaker/types.rb', line 12287

class CustomFileSystem < Struct.new(
  :efs_file_system,
  :f_sx_lustre_file_system,
  :s3_file_system,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class EfsFileSystem < CustomFileSystem; end
  class FSxLustreFileSystem < CustomFileSystem; end
  class S3FileSystem < CustomFileSystem; end
  class Unknown < CustomFileSystem; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



12287
12288
12289
# File 'lib/aws-sdk-sagemaker/types.rb', line 12287

def unknown
  @unknown
end