@Generated(value="jsii-pacmak/1.60.0 (build ebcefe6)",
date="2022-06-22T23:27:56.413Z")
public interface FileSystemConfig
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();
Modifier and Type | Interface and Description |
---|---|
static class |
FileSystemConfig.Builder
A builder for
FileSystemConfig |
static class |
FileSystemConfig.Jsii$Proxy
An implementation for
FileSystemConfig |
Modifier and Type | Method and Description |
---|---|
static FileSystemConfig.Builder |
builder() |
java.lang.String |
getArn()
ARN of the access point.
|
default Connections |
getConnections()
connections object used to allow ingress traffic from lambda function.
|
default java.util.List<IDependable> |
getDependency()
array of IDependable that lambda function depends on.
|
java.lang.String |
getLocalMountPath()
mount path in the lambda runtime environment.
|
default java.util.List<PolicyStatement> |
getPolicies()
additional IAM policies required for the lambda function.
|
java.lang.String getArn()
java.lang.String getLocalMountPath()
default Connections getConnections()
Default: - no connections required to add extra ingress rules for Lambda function
default java.util.List<IDependable> getDependency()
Default: - no dependency
default java.util.List<PolicyStatement> getPolicies()
Default: - no additional policies required
static FileSystemConfig.Builder builder()
FileSystemConfig.Builder
of FileSystemConfig