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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFunction.FileSystemConfigPropertystatic final classAn implementation forCfnFunction.FileSystemConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArn
The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.- See Also:
-
getLocalMountPath
The path where the function can access the file system, starting with/mnt/.- See Also:
-
builder
-