FileSystemConfig¶
-
class
aws_cdk.aws_lambda.
FileSystemConfig
(*, arn, local_mount_path, connections=None, dependency=None, policies=None)¶ Bases:
object
(experimental) FileSystem configurations for the Lambda function.
- Parameters
arn (
str
) – (experimental) ARN of the access point.local_mount_path (
str
) – (experimental) mount path in the lambda runtime environment.connections (
Optional
[Connections
]) – (experimental) connections object used to allow ingress traffic from lambda function. Default: - no connections required to add extra ingress rules for Lambda functiondependency (
Optional
[List
[IDependable
]]) – (experimental) array of IDependable that lambda function depends on. Default: - no dependencypolicies (
Optional
[List
[PolicyStatement
]]) – (experimental) additional IAM policies required for the lambda function. Default: - no additional policies required
- Stability
experimental
Attributes
-
arn
¶ (experimental) ARN of the access point.
- Stability
experimental
- Return type
str
-
connections
¶ (experimental) connections object used to allow ingress traffic from lambda function.
- Default
no connections required to add extra ingress rules for Lambda function
- Stability
experimental
- Return type
Optional
[Connections
]
-
dependency
¶ (experimental) array of IDependable that lambda function depends on.
- Default
no dependency
- Stability
experimental
- Return type
Optional
[List
[IDependable
]]
-
local_mount_path
¶ (experimental) mount path in the lambda runtime environment.
- Stability
experimental
- Return type
str
-
policies
¶ (experimental) additional IAM policies required for the lambda function.
- Default
no additional policies required
- Stability
experimental
- Return type
Optional
[List
[PolicyStatement
]]