@Stability(value=Stable)
public static interface CfnAppImageConfig.FileSystemConfigProperty
extends software.amazon.jsii.JsiiSerializable
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 Number |
getDefaultGid()
The default POSIX group ID (GID).
|
default Number |
getDefaultUid()
The default POSIX user ID (UID).
|
default String |
getMountPath()
The path within the image to mount the user's EFS home directory.
|
@Stability(value=Stable) @Nullable default Number getDefaultGid()
If not specified, defaults to 100 .
@Stability(value=Stable) @Nullable default Number getDefaultUid()
If not specified, defaults to 1000 .
@Stability(value=Stable) @Nullable default String getMountPath()
The directory should be empty. If not specified, defaults to * /home/sagemaker-user* .
@Stability(value=Stable) static CfnAppImageConfig.FileSystemConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.