QueryParameterValueArgs

data class QueryParameterValueArgs(val arrayValues: Output<List<QueryParameterValueArgs>>? = null, val structValues: Output<Map<String, String>>? = null, val value: Output<String>? = null) : ConvertibleToJava<QueryParameterValueArgs>

Constructors

Link copied to clipboard
fun QueryParameterValueArgs(arrayValues: Output<List<QueryParameterValueArgs>>? = null, structValues: Output<Map<String, String>>? = null, value: Output<String>? = null)

Functions

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

Properties

Link copied to clipboard

Optional The array values, if this is an array type.

Link copied to clipboard
val structValues: Output<Map<String, String>>? = null

Optional The struct field values, in order of the struct type's declaration.

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

Optional The value of this value, if a simple scalar type.