AWSLambdaFileSystemConfig
Objective-C
@interface AWSLambdaFileSystemConfig
Swift
class AWSLambdaFileSystemConfig
Details about the connection between a Lambda function and an Amazon EFS file system.
Required parameters: [Arn, LocalMountPath]
-
The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable arn;
Swift
var arn: String? { get set }
-
The path where the function can access the file system, starting with
/mnt/
.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable localMountPath;
Swift
var localMountPath: String? { get set }