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 storage configuration for a SageMaker AI 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();
- See Also:
-
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.- See Also:
-
getDefaultUid
The default POSIX user ID (UID).If not specified, defaults to
1000.- See Also:
-
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* .
- See Also:
-
builder
-