Event Handler Args
data class EventHandlerArgs(val auth: Output<UpstreamAuthSettingsArgs>? = null, val systemEvents: Output<List<String>>? = null, val urlTemplate: Output<String>, val userEventPattern: Output<String>? = null) : ConvertibleToJava<EventHandlerArgs>
Properties of event handler.
Constructors
Link copied to clipboard
fun EventHandlerArgs(auth: Output<UpstreamAuthSettingsArgs>? = null, systemEvents: Output<List<String>>? = null, urlTemplate: Output<String>, userEventPattern: Output<String>? = null)
Functions
Properties
Link copied to clipboard
Link copied to clipboard
Gets or sets the EventHandler URL template. You can use a predefined parameter {hub} and {event} inside the template, the value of the EventHandler URL is dynamically calculated when the client request comes in. For example, UrlTemplate can be http://example.com/api/{hub}/{event}
. The host part can't contains parameters.