FunctionFileSystemConfig constructor

const FunctionFileSystemConfig({
  1. required Input<String> arn,
  2. required Input<String> localMountPath,
})

Creates a new FunctionFileSystemConfig. arn ARN of the Amazon EFS Access Point, or the Amazon S3 Files access point. localMountPath Path where the function can access the file system. Must start with /mnt/.

Implementation

const FunctionFileSystemConfig({
  required this.arn,
  required this.localMountPath,
});