libZSservicesZSamazonka-lambdaZSamazonka-lambda
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.Lambda.Types.FileSystemConfig

Description

 
Synopsis

Documentation

data FileSystemConfig Source #

Details about the connection between a Lambda function and an Amazon EFS file system.

See: newFileSystemConfig smart constructor.

Constructors

FileSystemConfig' 

Fields

  • arn :: Text

    The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.

  • localMountPath :: Text

    The path where the function can access the file system, starting with /mnt/.

Instances

Instances details
Eq FileSystemConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.FileSystemConfig

Read FileSystemConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.FileSystemConfig

Show FileSystemConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.FileSystemConfig

Generic FileSystemConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.FileSystemConfig

Associated Types

type Rep FileSystemConfig :: Type -> Type #

NFData FileSystemConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.FileSystemConfig

Methods

rnf :: FileSystemConfig -> () #

Hashable FileSystemConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.FileSystemConfig

ToJSON FileSystemConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.FileSystemConfig

FromJSON FileSystemConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.FileSystemConfig

type Rep FileSystemConfig Source # 
Instance details

Defined in Amazonka.Lambda.Types.FileSystemConfig

type Rep FileSystemConfig = D1 ('MetaData "FileSystemConfig" "Amazonka.Lambda.Types.FileSystemConfig" "libZSservicesZSamazonka-lambdaZSamazonka-lambda" 'False) (C1 ('MetaCons "FileSystemConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "arn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "localMountPath") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newFileSystemConfig 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:arn:FileSystemConfig', fileSystemConfig_arn - The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.

$sel:localMountPath:FileSystemConfig', fileSystemConfig_localMountPath - The path where the function can access the file system, starting with /mnt/.

fileSystemConfig_arn :: Lens' FileSystemConfig Text Source #

The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.

fileSystemConfig_localMountPath :: Lens' FileSystemConfig Text Source #

The path where the function can access the file system, starting with /mnt/.