Show / Hide Table of Contents

Class CfnAppImageConfigPropsMixin.FileSystemConfigProperty

The Amazon Elastic File System storage configuration for a SageMaker AI image.

Inheritance
object
CfnAppImageConfigPropsMixin.FileSystemConfigProperty
Implements
CfnAppImageConfigPropsMixin.IFileSystemConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-appimageconfig-filesystemconfig.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-appimageconfig-filesystemconfig.html

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

double?

Remarks

If not specified, defaults to 100 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-appimageconfig-filesystemconfig.html#cfn-sagemaker-appimageconfig-filesystemconfig-defaultgid

DefaultUid

The default POSIX user ID (UID).

public double? DefaultUid { get; set; }
Property Value

double?

Remarks

If not specified, defaults to 1000 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-appimageconfig-filesystemconfig.html#cfn-sagemaker-appimageconfig-filesystemconfig-defaultuid

MountPath

The path within the image to mount the user's EFS home directory.

public string? MountPath { get; set; }
Property Value

string

Remarks

The directory should be empty. If not specified, defaults to * /home/sagemaker-user* .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-appimageconfig-filesystemconfig.html#cfn-sagemaker-appimageconfig-filesystemconfig-mountpath

Implements

CfnAppImageConfigPropsMixin.IFileSystemConfigProperty
Back to top Generated by DocFX