Interface CfnDomain.EFSFileSystemConfigProperty

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

@Stability(Stable) public static interface CfnDomain.EFSFileSystemConfigProperty extends software.amazon.jsii.JsiiSerializable
The settings for assigning a custom Amazon EFS file system to a user profile or space for an Amazon SageMaker Domain.

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

See Also: