{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/FileSystemConfig",
"title": "FileSystemConfig",
"type": "object",
"required": [
"Arn",
"LocalMountPath"
],
"properties": {
"Arn": {
"allOf": [
{
"$ref": "#/components/schemas/FileSystemArn"
},
{
"description": "The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system."
}
]
},
"LocalMountPath": {
"allOf": [
{
"$ref": "#/components/schemas/LocalMountPath"
},
{
"description": "The path where the function can access the file system, starting with /mnt/."
}
]
}
},
"description": "Details about the connection between a Lambda function and an Amazon EFS file system."
}