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")
// the properties below are optional
.s3FilesConfig(S3FilesConfigProperty.builder()
.directS3Read("directS3Read")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFunction.FileSystemConfigPropertystatic final classAn implementation forCfnFunction.FileSystemConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()getArn()The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.The path where the function can access the file system, starting with/mnt/.default ObjectReturns union: eitherIResolvableorCfnFunction.S3FilesConfigPropertyMethods 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:
-
getS3FilesConfig
Returns union: eitherIResolvableorCfnFunction.S3FilesConfigProperty- See Also:
-
builder
-