EventFilterArgs

data class EventFilterArgs(val attribute: Output<String>, val operator: Output<String>? = null, val value: Output<String>) : ConvertibleToJava<EventFilterArgs>

Filters events based on exact matches on the CloudEvents attributes.

Constructors

Link copied to clipboard
fun EventFilterArgs(attribute: Output<String>, operator: Output<String>? = null, value: Output<String>)

Functions

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

Properties

Link copied to clipboard
val attribute: Output<String>

The name of a CloudEvents attribute.

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

Optional. The operator used for matching the events with the value of the filter. If not specified, only events that have an exact key-value pair specified in the filter are matched. The only allowed value is match-path-pattern.

Link copied to clipboard
val value: Output<String>

The value for the attribute.