EnvironmentVariableArgs

data class EnvironmentVariableArgs(val name: Output<String>, val secureValue: Output<String>? = null, val secureValueReference: Output<String>? = null, val value: Output<String>? = null) : ConvertibleToJava<EnvironmentVariableArgs>

The environment variable to set within the container instance.

Constructors

Link copied to clipboard
constructor(name: Output<String>, secureValue: Output<String>? = null, secureValueReference: Output<String>? = null, value: Output<String>? = null)

Properties

Link copied to clipboard
val name: Output<String>

The name of the environment variable.

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

The value of the secure environment variable.

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

The reference of the secure environment variable.

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

The value of the environment variable.

Functions

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