EnvironmentVariableArgs

data class EnvironmentVariableArgs(val type: Output<Either<String, EnvironmentVariableType>>? = null, val value: Output<String>? = null) : ConvertibleToJava<EnvironmentVariableArgs>

Environment Variables for the container

Constructors

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

Properties

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

Type of the Environment Variable. Possible values are: local - For local variable

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

Value of the Environment variable

Functions

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