{ "$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 Using Lambda environment variables." } ] } }, "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." }