Interface CfnAppImageConfigPropsMixin.FileSystemConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAppImageConfigPropsMixin.FileSystemConfigProperty.Jsii$Proxy
- Enclosing class:
CfnAppImageConfigPropsMixin
@Stability(Stable)
public static interface CfnAppImageConfigPropsMixin.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.mixins.preview.services.sagemaker.mixins.*;
FileSystemConfigProperty fileSystemConfigProperty = FileSystemConfigProperty.builder()
.defaultGid(123)
.defaultUid(123)
.mountPath("mountPath")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAppImageConfigPropsMixin.FileSystemConfigPropertystatic final classAn implementation forCfnAppImageConfigPropsMixin.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
-