Edge Cache Service Routing Path Matcher Route Rule Match Rule Header Match Args
data class EdgeCacheServiceRoutingPathMatcherRouteRuleMatchRuleHeaderMatchArgs(val exactMatch: Output<String>? = null, val headerName: Output<String>, val invertMatch: Output<Boolean>? = null, val prefixMatch: Output<String>? = null, val presentMatch: Output<Boolean>? = null, val suffixMatch: Output<String>? = null) : ConvertibleToJava<EdgeCacheServiceRoutingPathMatcherRouteRuleMatchRuleHeaderMatchArgs>
Properties
Link copied to clipboard
The value of the header should exactly match contents of exactMatch.
Link copied to clipboard
The header name to match on.
Link copied to clipboard
If set to false (default), the headerMatch is considered a match if the match criteria above are met. If set to true, the headerMatch is considered a match if the match criteria above are NOT met.
Link copied to clipboard
The value of the header must start with the contents of prefixMatch.
Link copied to clipboard
A header with the contents of headerName must exist. The match takes place whether or not the request's header has a value.
Link copied to clipboard
The value of the header must end with the contents of suffixMatch.