Jwt Location Args
data class JwtLocationArgs(val cookie: Output<String>? = null, val header: Output<String>? = null, val query: Output<String>? = null, val valuePrefix: Output<String>? = null) : ConvertibleToJava<JwtLocationArgs>
Specifies a location to extract JWT from an API request.
Constructors
Link copied to clipboard
fun JwtLocationArgs(cookie: Output<String>? = null, header: Output<String>? = null, query: Output<String>? = null, valuePrefix: Output<String>? = null)
Functions
Properties
Link copied to clipboard
The value prefix. The value format is "value_prefix{token}" Only applies to "in" header type. Must be empty for "in" query type. If not empty, the header value has to match (case sensitive) this prefix. If not matched, JWT will not be extracted. If matched, JWT will be extracted after the prefix is removed. For example, for "Authorization: Bearer {JWT}", value_prefix="Bearer " with a space at the end.