Class: Aws::SageMaker::Types::CustomFileSystem
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::CustomFileSystem
- 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 Domain. Permitted users can access this file system in Amazon SageMaker Studio.
Direct Known Subclasses
Defined Under Namespace
Classes: EfsFileSystem, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#efs_file_system ⇒ Types::EFSFileSystem
A custom file system in Amazon EFS.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#efs_file_system ⇒ Types::EFSFileSystem
A custom file system in Amazon EFS.
10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 10381 class CustomFileSystem < Struct.new( :efs_file_system, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class EfsFileSystem < CustomFileSystem; end class Unknown < CustomFileSystem; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
10381 10382 10383 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 10381 def unknown @unknown end |