Interface FileSystemConfig.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<FileSystemConfig.Builder,FileSystemConfig>
,SdkBuilder<FileSystemConfig.Builder,FileSystemConfig>
,SdkPojo
- Enclosing class:
- FileSystemConfig
public static interface FileSystemConfig.Builder extends SdkPojo, CopyableBuilder<FileSystemConfig.Builder,FileSystemConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FileSystemConfig.Builder
defaultGid(Integer defaultGid)
The default POSIX group ID (GID).FileSystemConfig.Builder
defaultUid(Integer defaultUid)
The default POSIX user ID (UID).FileSystemConfig.Builder
mountPath(String mountPath)
The path within the image to mount the user's EFS home directory.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
mountPath
FileSystemConfig.Builder mountPath(String mountPath)
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.
- Parameters:
mountPath
- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultUid
FileSystemConfig.Builder defaultUid(Integer defaultUid)
The default POSIX user ID (UID). If not specified, defaults to
1000
.- Parameters:
defaultUid
- The default POSIX user ID (UID). If not specified, defaults to1000
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultGid
FileSystemConfig.Builder defaultGid(Integer defaultGid)
The default POSIX group ID (GID). If not specified, defaults to
100
.- Parameters:
defaultGid
- The default POSIX group ID (GID). If not specified, defaults to100
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-