FunctionEnvironmentArgs

data class FunctionEnvironmentArgs(val variables: Output<Map<String, String>>? = null) : ConvertibleToJava<FunctionEnvironmentArgs>

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: Output<Map<String, String>>? = null)

Properties

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

Environment variable key-value pairs. For more information, see Using Lambda environment variables. If the value of the environment variable is a time or a duration, enclose the value in quotes.

Functions

Link copied to clipboard
open override fun toJava(): FunctionEnvironmentArgs