Interface CfnDomain.CustomFileSystemConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDomain.CustomFileSystemConfigProperty.Jsii$Proxy
- Enclosing class:
CfnDomain
@Stability(Stable)
public static interface CfnDomain.CustomFileSystemConfigProperty
extends software.amazon.jsii.JsiiSerializable
The settings for assigning a custom file system to a user profile or space for an Amazon SageMaker AI Domain.
Permitted users can access this file system in Amazon SageMaker AI 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())
.fSxLustreFileSystemConfig(FSxLustreFileSystemConfigProperty.builder()
.fileSystemId("fileSystemId")
// the properties below are optional
.fileSystemPath("fileSystemPath")
.build())
.s3FileSystemConfig(S3FileSystemConfigProperty.builder()
.mountPath("mountPath")
.s3Uri("s3Uri")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDomain.CustomFileSystemConfigPropertystatic final classAn implementation forCfnDomain.CustomFileSystemConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEfsFileSystemConfig
The settings for a custom Amazon EFS file system.Returns union: either
IResolvableorCfnDomain.EFSFileSystemConfigProperty- See Also:
-
getFSxLustreFileSystemConfig
The settings for a custom Amazon FSx for Lustre file system.Returns union: either
IResolvableorCfnDomain.FSxLustreFileSystemConfigProperty- See Also:
-
getS3FileSystemConfig
Configuration settings for a custom Amazon S3 file system.Returns union: either
IResolvableorCfnDomain.S3FileSystemConfigProperty- See Also:
-
builder
-