Amazon IoT Greengrass · JSON Structure

Iot Greengrass Lambda Container Params Structure

Contains information about a container in which Lambda functions run on Greengrass core devices.

Type: object Properties: 4
Edge ComputingIoTLambdaMachine LearningReal-Time Processing

LambdaContainerParams is a JSON Structure definition published by Amazon IoT Greengrass, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

memorySizeInKB mountROSysfs volumes devices

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-greengrass/refs/heads/main/json-structure/iot-greengrass-lambda-container-params-structure.json",
  "name": "LambdaContainerParams",
  "description": "Contains information about a container in which Lambda functions run on Greengrass core devices.",
  "type": "object",
  "properties": {
    "memorySizeInKB": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OptionalInteger"
        },
        {
          "description": "<p>The memory size of the container, expressed in kilobytes.</p> <p>Default: <code>16384</code> (16 MB)</p>"
        }
      ]
    },
    "mountROSysfs": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OptionalBoolean"
        },
        {
          "description": "<p>Whether or not the container can read information from the device's <code>/sys</code> folder.</p> <p>Default: <code>false</code> </p>"
        }
      ]
    },
    "volumes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LambdaVolumeList"
        },
        {
          "description": "The list of volumes that the container can access."
        }
      ]
    },
    "devices": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LambdaDeviceList"
        },
        {
          "description": "The list of system devices that the container can access."
        }
      ]
    }
  }
}