libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.SageMaker.Types.FileSystemConfig

Description

 
Synopsis

Documentation

data FileSystemConfig Source #

The Amazon Elastic File System (EFS) storage configuration for a SageMaker image.

See: newFileSystemConfig smart constructor.

Constructors

FileSystemConfig' 

Fields

  • defaultGid :: Maybe Natural

    The default POSIX group ID (GID). If not specified, defaults to 100.

  • mountPath :: Maybe Text

    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.

  • defaultUid :: Maybe Natural

    The default POSIX user ID (UID). If not specified, defaults to 1000.

Instances

Instances details
Eq FileSystemConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.FileSystemConfig

Read FileSystemConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.FileSystemConfig

Show FileSystemConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.FileSystemConfig

Generic FileSystemConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.FileSystemConfig

Associated Types

type Rep FileSystemConfig :: Type -> Type #

NFData FileSystemConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.FileSystemConfig

Methods

rnf :: FileSystemConfig -> () #

Hashable FileSystemConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.FileSystemConfig

ToJSON FileSystemConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.FileSystemConfig

FromJSON FileSystemConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.FileSystemConfig

type Rep FileSystemConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.FileSystemConfig

type Rep FileSystemConfig = D1 ('MetaData "FileSystemConfig" "Amazonka.SageMaker.Types.FileSystemConfig" "libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker" 'False) (C1 ('MetaCons "FileSystemConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "defaultGid") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: (S1 ('MetaSel ('Just "mountPath") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "defaultUid") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))))

newFileSystemConfig :: FileSystemConfig Source #

Create a value of FileSystemConfig with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:defaultGid:FileSystemConfig', fileSystemConfig_defaultGid - The default POSIX group ID (GID). If not specified, defaults to 100.

$sel:mountPath:FileSystemConfig', fileSystemConfig_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.

$sel:defaultUid:FileSystemConfig', fileSystemConfig_defaultUid - The default POSIX user ID (UID). If not specified, defaults to 1000.

fileSystemConfig_defaultGid :: Lens' FileSystemConfig (Maybe Natural) Source #

The default POSIX group ID (GID). If not specified, defaults to 100.

fileSystemConfig_mountPath :: Lens' FileSystemConfig (Maybe Text) Source #

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.

fileSystemConfig_defaultUid :: Lens' FileSystemConfig (Maybe Natural) Source #

The default POSIX user ID (UID). If not specified, defaults to 1000.