Interface CfnFunction.FileSystemConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFunction.FileSystemConfigProperty.Jsii$Proxy
Enclosing class:
CfnFunction

@Stability(Stable) public static interface CfnFunction.FileSystemConfigProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.lambda.*;
 FileSystemConfigProperty fileSystemConfigProperty = FileSystemConfigProperty.builder()
         .arn("arn")
         .localMountPath("localMountPath")
         .build();