Interface CfnAppImageConfig.FileSystemConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAppImageConfig.FileSystemConfigProperty.Jsii$Proxy
- Enclosing class:
- CfnAppImageConfig
@Stability(Stable)
public static interface CfnAppImageConfig.FileSystemConfigProperty
extends software.amazon.jsii.JsiiSerializable
The Amazon Elastic File System (EFS) storage configuration for a SageMaker image.
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.*;
FileSystemConfigProperty fileSystemConfigProperty = FileSystemConfigProperty.builder()
.defaultGid(123)
.defaultUid(123)
.mountPath("mountPath")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAppImageConfig.FileSystemConfigPropertystatic final classAn implementation forCfnAppImageConfig.FileSystemConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDefaultGid
The default POSIX group ID (GID).If not specified, defaults to
100. -
getDefaultUid
The default POSIX user ID (UID).If not specified, defaults to
1000. -
getMountPath
The path within the image to mount the user's EFS home directory.The directory should be empty. If not specified, defaults to * /home/sagemaker-user* .
-
builder
-