aws-cdk-lib.aws_lambda.CfnFunction.FileSystemConfigProperty

interface FileSystemConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.Lambda.CfnFunction.FileSystemConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awslambda#CfnFunction_FileSystemConfigProperty
Javasoftware.amazon.awscdk.services.lambda.CfnFunction.FileSystemConfigProperty
Pythonaws_cdk.aws_lambda.CfnFunction.FileSystemConfigProperty
TypeScript aws-cdk-lib » aws_lambda » CfnFunction » FileSystemConfigProperty

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

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lambda as lambda } from 'aws-cdk-lib';
const fileSystemConfigProperty: lambda.CfnFunction.FileSystemConfigProperty = {
  arn: 'arn',
  localMountPath: 'localMountPath',
};

Properties

NameTypeDescription
arnstringThe Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.
localMountPathstringThe path where the function can access the file system, starting with /mnt/ .

arn

Type: string

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


localMountPath

Type: string

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