PipelineEnvironmentVariableArgs

data class PipelineEnvironmentVariableArgs(val name: Output<String>, val type: Output<PipelineEnvironmentVariableType>? = null, val value: Output<String>) : ConvertibleToJava<PipelineEnvironmentVariableArgs>

Represents information about the environment variable of an action.

Constructors

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

Properties

Link copied to clipboard
val name: Output<String>

The name of the environment variable.

Link copied to clipboard

The type of the environment variable.

Link copied to clipboard
val value: Output<String>

The value of the environment variable.

Functions

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