Interface FileSystemConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
FileSystemConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-10-31T19:13:00.521Z")
@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.constructs.*; 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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forFileSystemConfig
static final class
An implementation forFileSystemConfig
-
Method Summary
Modifier and TypeMethodDescriptionstatic FileSystemConfig.Builder
builder()
getArn()
ARN of the access point.default Connections
connections object used to allow ingress traffic from lambda function.default List<software.constructs.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.Builder
ofFileSystemConfig
-