@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-05-10T17:05:56.524Z") @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.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() |
String |
getArn()
ARN of the access point.
|
default Connections |
getConnections()
connections object used to allow ingress traffic from lambda function.
|
default List<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<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 © 2023. All rights reserved.