FileSystemConfig — AWS SDK for Ruby V3 (original) (raw)
Class: Aws::Lambda::Types::FileSystemConfig
Inherits:
Struct
- Object
- Struct
- Aws::Lambda::Types::FileSystemConfig show all
Defined in:
gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Constant Summarycollapse
SENSITIVE =
[]
Instance Attribute Summary collapse
- #arn ⇒ String
The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system. - #local_mount_path ⇒ String
The path where the function can access the file system, starting with/mnt/
.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.
2172 2173 2174 2175 2176 2177 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 2172 class FileSystemConfig < Struct.new( :arn, :local_mount_path) SENSITIVE = [] include Aws::Structure end |
---|
#local_mount_path ⇒ String
The path where the function can access the file system, starting with /mnt/
.
2172 2173 2174 2175 2176 2177 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 2172 class FileSystemConfig < Struct.new( :arn, :local_mount_path) SENSITIVE = [] include Aws::Structure end |
---|