ConnectionParameterArgs

data class ConnectionParameterArgs(val isValueSecret: Output<Boolean>? = null, val key: Output<String>, val value: Output<String>) : ConvertibleToJava<ConnectionParameterArgs>

Constructors

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

Properties

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

Specifies whether the value is secret.

Link copied to clipboard
val key: Output<String>

The key for a query string parameter.

Link copied to clipboard
val value: Output<String>

The value associated with the key for the query string parameter.

Functions

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