HubEventListenerArgs

data class HubEventListenerArgs(val eventhubName: Output<String>, val eventhubNamespaceName: Output<String>, val systemEventNameFilters: Output<List<String>>? = null, val userEventNameFilters: Output<List<String>>? = null) : ConvertibleToJava<HubEventListenerArgs>

Constructors

Link copied to clipboard
constructor(eventhubName: Output<String>, eventhubNamespaceName: Output<String>, systemEventNameFilters: Output<List<String>>? = null, userEventNameFilters: Output<List<String>>? = null)

Properties

Link copied to clipboard
val eventhubName: Output<String>

Specifies the event hub name to receive the events.

Link copied to clipboard

Specifies the event hub namespace name to receive the events.

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

Specifies the list of system events. Supported values are connected and disconnected.

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

Specifies the list of matching user event names. ["*"] can be used to match all events.

Functions

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