HeaderActionArgs

data class HeaderActionArgs(val headerActionType: Output<Either<String, HeaderActionType>>, val headerName: Output<String>, val value: Output<String>? = null) : ConvertibleToJava<HeaderActionArgs>

An action that can manipulate an http header.

Constructors

Link copied to clipboard
constructor(headerActionType: Output<Either<String, HeaderActionType>>, headerName: Output<String>, value: Output<String>? = null)

Properties

Link copied to clipboard

Which type of manipulation to apply to the header.

Link copied to clipboard
val headerName: Output<String>

The name of the header this action will apply to.

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

The value to update the given header name with. This value is not used if the actionType is Delete.

Functions

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