Environment

A function's environment variable settings. You can use environment variables to adjust your function's behavior without updating code. An environment variable is a pair of strings that are stored in a function's version-specific configuration.

APIs.ioEngineeringPlatform

Properties

Name Type Description
Variables object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-environment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Environment",
  "title": "Environment",
  "type": "object",
  "properties": {
    "Variables": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EnvironmentVariables"
        },
        {
          "description": "Environment variable key-value pairs. For more information, see <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html\">Using Lambda environment variables</a>."
        }
      ]
    }
  },
  "description": "A function's environment variable settings. You can use environment variables to adjust your function's behavior without updating code. An environment variable is a pair of strings that are stored in a function's version-specific configuration."
}