Class: Aws::SageMaker::Types::CustomFileSystemConfig

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

Overview

Note:

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

Note:

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

The settings for assigning a custom file system to a user profile or space for an Amazon SageMaker Domain. Permitted users can access this file system in Amazon SageMaker Studio.

Direct Known Subclasses

EfsFileSystemConfig, Unknown

Defined Under Namespace

Classes: EfsFileSystemConfig, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#efs_file_system_configTypes::EFSFileSystemConfig

The settings for a custom Amazon EFS file system.



9655
9656
9657
9658
9659
9660
9661
9662
9663
9664
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 9655

class CustomFileSystemConfig < Struct.new(
  :efs_file_system_config,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class EfsFileSystemConfig < CustomFileSystemConfig; end
  class Unknown < CustomFileSystemConfig; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



9655
9656
9657
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 9655

def unknown
  @unknown
end