FunctionEnvironment

data class FunctionEnvironment(val variables: Map<String, String>? = null)

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.

Constructors

Link copied to clipboard
constructor(variables: Map<String, String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val variables: Map<String, String>? = null

Environment variable key-value pairs. For more information, see Using Lambda environment variables.