@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:40.442Z") @Stability(value=Stable) public interface FileSystemConfig extends software.amazon.jsii.JsiiSerializable
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();
| 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() |
String |
getArn()
ARN of the access point.
|
default Connections |
getConnections()
connections object used to allow ingress traffic from lambda function.
|
default List<software.constructs.IDependable> |
getDependency()
array of IDependable that lambda function depends on.
|
String |
getLocalMountPath()
mount path in the lambda runtime environment.
|
default List<PolicyStatement> |
getPolicies()
additional IAM policies required for the lambda function.
|
@Stability(value=Stable) @NotNull String getArn()
@Stability(value=Stable) @NotNull String getLocalMountPath()
@Stability(value=Stable) @Nullable default Connections getConnections()
Default: - no connections required to add extra ingress rules for Lambda function
@Stability(value=Stable) @Nullable default List<software.constructs.IDependable> getDependency()
Default: - no dependency
@Stability(value=Stable) @Nullable default List<PolicyStatement> getPolicies()
Default: - no additional policies required
@Stability(value=Stable) static FileSystemConfig.Builder builder()
FileSystemConfig.Builder of FileSystemConfigCopyright © 2022. All rights reserved.