public static interface CfnAppImageConfig.FileSystemConfigProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnAppImageConfig.FileSystemConfigProperty.Builder
A builder for
CfnAppImageConfig.FileSystemConfigProperty |
static class |
CfnAppImageConfig.FileSystemConfigProperty.Jsii$Proxy
An implementation for
CfnAppImageConfig.FileSystemConfigProperty |
Modifier and Type | Method and Description |
---|---|
static CfnAppImageConfig.FileSystemConfigProperty.Builder |
builder() |
default java.lang.Number |
getDefaultGid()
The default POSIX group ID (GID).
|
default java.lang.Number |
getDefaultUid()
The default POSIX user ID (UID).
|
default java.lang.String |
getMountPath()
The path within the image to mount the user's EFS home directory.
|
default java.lang.Number getDefaultGid()
If not specified, defaults to 100
.
default java.lang.Number getDefaultUid()
If not specified, defaults to 1000
.
default java.lang.String getMountPath()
The directory should be empty. If not specified, defaults to * /home/sagemaker-user* .
static CfnAppImageConfig.FileSystemConfigProperty.Builder builder()