HttpRouteRuleActionRequestHeaderModifierArgs

data class HttpRouteRuleActionRequestHeaderModifierArgs(val add: Output<Map<String, String>>? = null, val removes: Output<List<String>>? = null, val set: Output<Map<String, String>>? = null) : ConvertibleToJava<HttpRouteRuleActionRequestHeaderModifierArgs>

Constructors

constructor(add: Output<Map<String, String>>? = null, removes: Output<List<String>>? = null, set: Output<Map<String, String>>? = null)

Properties

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

Add the headers with given map where key is the name of the header, value is the value of the header.

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

Remove headers (matching by header names) specified in the list.

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

Completely overwrite/replace the headers with given map where key is the name of the header, value is the value of the header.

Functions

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