FunctionEnvironmentArgs

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

Constructors

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

Properties

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

Map of environment variables that are accessible from the function code during execution. If provided at least one key must be present.

Functions

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