ConfigVariableArgs

data class ConfigVariableArgs(val boolValue: Output<Boolean>? = null, val intValue: Output<String>? = null, val key: Output<String>? = null, val secretValue: Output<SecretArgs>? = null, val stringValue: Output<String>? = null) : ConvertibleToJava<ConfigVariableArgs>

ConfigVariable represents a configuration variable present in a Connection. or AuthConfig.

Constructors

Link copied to clipboard
constructor(boolValue: Output<Boolean>? = null, intValue: Output<String>? = null, key: Output<String>? = null, secretValue: Output<SecretArgs>? = null, stringValue: Output<String>? = null)

Properties

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

Value is a bool.

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

Value is an integer

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

Key of the config variable.

Link copied to clipboard
val secretValue: Output<SecretArgs>? = null

Value is a secret.

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

Value is a string.

Functions

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