Class CfnAppImageConfigPropsMixin.FileSystemConfigProperty
The Amazon Elastic File System storage configuration for a SageMaker AI image.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnAppImageConfigPropsMixin.FileSystemConfigProperty : CfnAppImageConfigPropsMixin.IFileSystemConfigProperty
Syntax (vb)
Public Class CfnAppImageConfigPropsMixin.FileSystemConfigProperty Implements CfnAppImageConfigPropsMixin.IFileSystemConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins;
var fileSystemConfigProperty = new FileSystemConfigProperty {
DefaultGid = 123,
DefaultUid = 123,
MountPath = "mountPath"
};
Synopsis
Constructors
| FileSystemConfigProperty() | The Amazon Elastic File System storage configuration for a SageMaker AI image. |
Properties
| DefaultGid | The default POSIX group ID (GID). |
| DefaultUid | The default POSIX user ID (UID). |
| MountPath | The path within the image to mount the user's EFS home directory. |
Constructors
FileSystemConfigProperty()
The Amazon Elastic File System storage configuration for a SageMaker AI image.
public FileSystemConfigProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins;
var fileSystemConfigProperty = new FileSystemConfigProperty {
DefaultGid = 123,
DefaultUid = 123,
MountPath = "mountPath"
};
Properties
DefaultGid
The default POSIX group ID (GID).
public double? DefaultGid { get; set; }
Property Value
Remarks
DefaultUid
The default POSIX user ID (UID).
public double? DefaultUid { get; set; }
Property Value
Remarks
MountPath
The path within the image to mount the user's EFS home directory.
public string? MountPath { get; set; }
Property Value
Remarks
The directory should be empty. If not specified, defaults to * /home/sagemaker-user* .