Interface CfnSpacePropsMixin.CustomFileSystemProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSpacePropsMixin.CustomFileSystemProperty.Jsii$Proxy
- Enclosing class:
CfnSpacePropsMixin
@Stability(Stable)
public static interface CfnSpacePropsMixin.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 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.cfnpropertymixins.services.sagemaker.*;
CustomFileSystemProperty customFileSystemProperty = CustomFileSystemProperty.builder()
.efsFileSystem(EFSFileSystemProperty.builder()
.fileSystemId("fileSystemId")
.build())
.fSxLustreFileSystem(FSxLustreFileSystemProperty.builder()
.fileSystemId("fileSystemId")
.build())
.s3FileSystem(S3FileSystemProperty.builder()
.s3Uri("s3Uri")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSpacePropsMixin.CustomFileSystemPropertystatic final classAn implementation forCfnSpacePropsMixin.CustomFileSystemProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEfsFileSystem
A custom file system in Amazon EFS.Returns union: either
IResolvableorCfnSpacePropsMixin.EFSFileSystemProperty- See Also:
-
getFSxLustreFileSystem
A custom file system in Amazon FSx for Lustre.Returns union: either
IResolvableorCfnSpacePropsMixin.FSxLustreFileSystemProperty- See Also:
-
getS3FileSystem
A custom file system in Amazon S3.This is only supported in Amazon SageMaker Unified Studio.
Returns union: either
IResolvableorCfnSpacePropsMixin.S3FileSystemProperty- See Also:
-
builder
-