ComponentEventArgs

data class ComponentEventArgs(val action: Output<String>? = null, val bindingEvent: Output<String>? = null, val parameters: Output<ComponentActionParametersArgs>? = null) : ConvertibleToJava<ComponentEventArgs>

Constructors

Link copied to clipboard
constructor(action: Output<String>? = null, bindingEvent: Output<String>? = null, parameters: Output<ComponentActionParametersArgs>? = null)

Properties

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

The action to perform when a specific event is raised.

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

Binds an event to an action on a component. When you specify a bindingEvent , the event is called when the action is performed.

Link copied to clipboard

Describes information about the action.

Functions

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