Interface CfnUserProfile.EFSFileSystemConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserProfile.EFSFileSystemConfigProperty.Jsii$Proxy
- Enclosing class:
CfnUserProfile
@Stability(Stable)
public static interface CfnUserProfile.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 AI 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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUserProfile.EFSFileSystemConfigPropertystatic final classAn implementation forCfnUserProfile.EFSFileSystemConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFileSystemId
The ID of your Amazon EFS file system.- See Also:
-
getFileSystemPath
The path to the file system directory that is accessible in Amazon SageMaker AI Studio.Permitted users can access only this directory and below.
- See Also:
-
builder
-