Interface FileSystemConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
FileSystemConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:40.738Z")
@Stability(Stable)
public interface FileSystemConfig
extends software.amazon.jsii.JsiiSerializable
FileSystem configurations for the Lambda function.
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.ec2.*;
import software.amazon.awscdk.services.iam.*;
import software.amazon.awscdk.services.lambda.*;
import software.amazon.awscdk.core.*;
Connections connections;
IDependable dependable;
PolicyStatement policyStatement;
FileSystemConfig fileSystemConfig = FileSystemConfig.builder()
.arn("arn")
.localMountPath("localMountPath")
// the properties below are optional
.connections(connections)
.dependency(List.of(dependable))
.policies(List.of(policyStatement))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forFileSystemConfigstatic final classAn implementation forFileSystemConfig -
Method Summary
Modifier and TypeMethodDescriptionstatic FileSystemConfig.Builderbuilder()getArn()ARN of the access point.default Connectionsconnections object used to allow ingress traffic from lambda function.default List<IDependable>array of IDependable that lambda function depends on.mount path in the lambda runtime environment.default List<PolicyStatement>additional IAM policies required for the lambda function.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArn
ARN of the access point. -
getLocalMountPath
mount path in the lambda runtime environment. -
getConnections
connections object used to allow ingress traffic from lambda function.Default: - no connections required to add extra ingress rules for Lambda function
-
getDependency
array of IDependable that lambda function depends on.Default: - no dependency
-
getPolicies
additional IAM policies required for the lambda function.Default: - no additional policies required
-
builder
- Returns:
- a
FileSystemConfig.BuilderofFileSystemConfig
-