Interface CfnUserProfile.CustomFileSystemConfigProperty

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

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

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.*;
 CustomFileSystemConfigProperty customFileSystemConfigProperty = CustomFileSystemConfigProperty.builder()
         .efsFileSystemConfig(EFSFileSystemConfigProperty.builder()
                 .fileSystemId("fileSystemId")
                 // the properties below are optional
                 .fileSystemPath("fileSystemPath")
                 .build())
         .build();
 

See Also: