SetValueArgs

data class SetValueArgs(val isSecret: Output<Boolean>? = null, val name: Output<String>, val value: Output<String>) : ConvertibleToJava<SetValueArgs>

The properties of a overridable value that can be passed to a task template.

Constructors

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

Properties

Link copied to clipboard
val isSecret: Output<Boolean>? = null

Flag to indicate whether the value represents a secret or not.

Link copied to clipboard
val name: Output<String>

The name of the overridable value.

Link copied to clipboard
val value: Output<String>

The overridable value.

Functions

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