interface FileSystemConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lambda.CfnFunctionPropsMixin.FileSystemConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslambda#CfnFunctionPropsMixin_FileSystemConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lambda.CfnFunctionPropsMixin.FileSystemConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_lambda.CfnFunctionPropsMixin.FileSystemConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lambda » CfnFunctionPropsMixin » 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/cfn-property-mixins';
const fileSystemConfigProperty: lambda.CfnFunctionPropsMixin.FileSystemConfigProperty = {
arn: 'arn',
localMountPath: 'localMountPath',
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string | IAccess | The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system. |
| local | string | The path where the function can access the file system, starting with /mnt/ . |
arn?
Type:
string | IAccess
(optional)
The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.
localMountPath?
Type:
string
(optional)
The path where the function can access the file system, starting with /mnt/ .

.NET
Go
Java
Python
TypeScript