DaprSubscriptionRouteRuleArgs

data class DaprSubscriptionRouteRuleArgs(val match: Output<String>? = null, val path: Output<String>? = null) : ConvertibleToJava<DaprSubscriptionRouteRuleArgs>

Dapr Pubsub Event Subscription Route Rule is used to specify the condition for sending a message to a specific path.

Constructors

Link copied to clipboard
constructor(match: Output<String>? = null, path: Output<String>? = null)

Properties

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

The optional CEL expression used to match the event. If the match is not specified, then the route is considered the default. The rules are tested in the order specified, so they should be define from most-to-least specific. The default route should appear last in the list.

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

The path for events that match this rule

Functions

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