EventNameFilterArgs

data class EventNameFilterArgs(val systemEvents: Output<List<String>>? = null, val type: Output<String>, val userEventPattern: Output<String>? = null) : ConvertibleToJava<EventNameFilterArgs>

Filter events by their name.

Constructors

Link copied to clipboard
constructor(systemEvents: Output<List<String>>? = null, type: Output<String>, userEventPattern: Output<String>? = null)

Properties

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

Gets or sets a list of system events. Supported events: "connected" and "disconnected". Blocking event "connect" is not supported because it requires a response.

Link copied to clipboard
val type: Output<String>

Expected value is 'EventName'.

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

Gets or sets a matching pattern for event names. There are 3 kinds of patterns supported: 1. "*", it matches any event name 2. Combine multiple events with ",", for example "event1,event2", it matches events "event1" and "event2" 3. A single event name, for example, "event1", it matches "event1"

Functions

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