SystemParameterArgs

data class SystemParameterArgs(val httpHeader: Output<String>? = null, val name: Output<String>? = null, val urlQueryParameter: Output<String>? = null) : ConvertibleToJava<SystemParameterArgs>

Define a parameter's name and location. The parameter may be passed as either an HTTP header or a URL query parameter, and if both are passed the behavior is implementation-dependent.

Constructors

Link copied to clipboard
fun SystemParameterArgs(httpHeader: Output<String>? = null, name: Output<String>? = null, urlQueryParameter: Output<String>? = null)

Functions

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

Properties

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

Define the HTTP header name to use for the parameter. It is case insensitive.

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

Define the name of the parameter, such as "api_key" . It is case sensitive.

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

Define the URL query parameter name to use for the parameter. It is case sensitive.