ValueSecretInfoArgs

data class ValueSecretInfoArgs(val secretType: Output<String>, val value: Output<String>? = null) : ConvertibleToJava<ValueSecretInfoArgs>

The secret info when type is rawValue. It's for scenarios that user input the secret.

Constructors

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

Properties

Link copied to clipboard
val secretType: Output<String>

The secret type. Expected value is 'rawValue'.

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

The actual value of the secret.

Functions

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