ParameterValueResponse

data class ParameterValueResponse(val reference: SecretValueReferenceResponse? = null, val value: Any? = null)

Value for the specified parameter. Can be either 'value' or 'reference' but not both.

Constructors

Link copied to clipboard
constructor(reference: SecretValueReferenceResponse? = null, value: Any? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Parameter value as reference type.

Link copied to clipboard
val value: Any? = null

Parameter value. Any valid JSON value is allowed including objects, arrays, strings, numbers and booleans.