HttpRouteMatchHeaderArgs

data class HttpRouteMatchHeaderArgs(val name: Output<String>, val type: Output<Either<String, HeaderMatchType>>? = null, val value: Output<String>? = null) : ConvertibleToJava<HttpRouteMatchHeaderArgs>

Describes header information for http route matching.

Constructors

Link copied to clipboard
constructor(name: Output<String>, type: Output<Either<String, HeaderMatchType>>? = null, value: Output<String>? = null)

Properties

Link copied to clipboard
val name: Output<String>

Name of header to match in request.

Link copied to clipboard
val type: Output<Either<String, HeaderMatchType>>? = null

how to match header value

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

Value of header to match in request.

Functions

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