HttpHeaderOptionArgs

data class HttpHeaderOptionArgs(val headerName: Output<String>? = null, val headerValue: Output<String>? = null, val replace: Output<Boolean>? = null) : ConvertibleToJava<HttpHeaderOptionArgs>

Specification determining how headers are added to requests or responses.

Constructors

Link copied to clipboard
fun HttpHeaderOptionArgs(headerName: Output<String>? = null, headerValue: Output<String>? = null, replace: Output<Boolean>? = null)

Functions

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

Properties

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

The name of the header.

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

The value of the header to add.

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

If false, headerValue is appended to any values that already exist for the header. If true, headerValue is set for the header, discarding any values that were set for that header. The default value is false.