Interface CfnSpace.CustomFileSystemProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSpace.CustomFileSystemProperty.Jsii$Proxy
Enclosing class:
CfnSpace

@Stability(Stable) public static interface CfnSpace.CustomFileSystemProperty extends software.amazon.jsii.JsiiSerializable
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.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.sagemaker.*;
 CustomFileSystemProperty customFileSystemProperty = CustomFileSystemProperty.builder()
         .efsFileSystem(EFSFileSystemProperty.builder()
                 .fileSystemId("fileSystemId")
                 .build())
         .build();
 

See Also: