FileSystemConfig

Details about the connection between a Lambda function and an Amazon EFS file system.

APIs.ioEngineeringPlatform

Properties

Name Type Description
Arn object
LocalMountPath object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-filesystemconfig-schema.json Raw ↑
{
  "$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 <code>/mnt/</code>."
        }
      ]
    }
  },
  "description": "Details about the connection between a Lambda function and an <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-filesystem.html\">Amazon EFS file system</a>."
}