AppSpecFunctionEnvArgs

data class AppSpecFunctionEnvArgs(val key: Output<String>? = null, val scope: Output<String>? = null, val type: Output<String>? = null, val value: Output<String>? = null) : ConvertibleToJava<AppSpecFunctionEnvArgs>

Constructors

Link copied to clipboard
constructor(key: Output<String>? = null, scope: Output<String>? = null, type: Output<String>? = null, value: Output<String>? = null)

Properties

Link copied to clipboard
val key: Output<String>? = null

The name of the environment variable.

Link copied to clipboard
val scope: Output<String>? = null

The visibility scope of the environment variable. One of RUN_TIME, BUILD_TIME, or RUN_AND_BUILD_TIME (default).

Link copied to clipboard
val type: Output<String>? = null

The type of the environment variable, GENERAL or SECRET.

Link copied to clipboard
val value: Output<String>? = null

The value of the environment variable.

Functions

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