RouteMapRuleResponse

data class RouteMapRuleResponse(val actions: List<ActionResponse>? = null, val matchCriteria: List<CriterionResponse>? = null, val name: String? = null, val nextStepIfMatched: String? = null)

A RouteMap Rule.

Constructors

Link copied to clipboard
constructor(actions: List<ActionResponse>? = null, matchCriteria: List<CriterionResponse>? = null, name: String? = null, nextStepIfMatched: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

List of actions which will be applied on a match.

Link copied to clipboard

List of matching criterion which will be applied to traffic.

Link copied to clipboard
val name: String? = null

The unique name for the rule.

Link copied to clipboard

Next step after rule is evaluated. Current supported behaviors are 'Continue'(to next rule) and 'Terminate'.