Class: Aws::Lambda::Types::FileSystemConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-lambda/types.rb

Overview

Note:

When making an API call, you may pass FileSystemConfig data as a hash:

{
  arn: "FileSystemArn", # required
  local_mount_path: "LocalMountPath", # required
}

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#arnString

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

Returns:

  • (String)


1737
1738
1739
1740
1741
1742
# File 'lib/aws-sdk-lambda/types.rb', line 1737

class FileSystemConfig < Struct.new(
  :arn,
  :local_mount_path)
  SENSITIVE = []
  include Aws::Structure
end

#local_mount_pathString

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

Returns:

  • (String)


1737
1738
1739
1740
1741
1742
# File 'lib/aws-sdk-lambda/types.rb', line 1737

class FileSystemConfig < Struct.new(
  :arn,
  :local_mount_path)
  SENSITIVE = []
  include Aws::Structure
end