GetFunctionFileSystemConfig constructor

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

Creates a new GetFunctionFileSystemConfig. arn ARN of the Amazon EFS Access Point that provides access to the file system. localMountPath Path where the function can access the file system, starting with /mnt/.

Implementation

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