HttpRouteArgs

data class HttpRouteArgs(val action: Output<HttpRouteActionArgs>? = null, val match: Output<HttpRouteMatchArgs>? = null) : ConvertibleToJava<HttpRouteArgs>

Http Routes configuration, including paths to match on and whether or not rewrites are to be done.

Constructors

Link copied to clipboard
constructor(action: Output<HttpRouteActionArgs>? = null, match: Output<HttpRouteMatchArgs>? = null)

Properties

Link copied to clipboard
val action: Output<HttpRouteActionArgs>? = null

Once route is matched, what is the desired action

Link copied to clipboard
val match: Output<HttpRouteMatchArgs>? = null

Conditions route will match on

Functions

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