FlowNodeOutputArgs

data class FlowNodeOutputArgs(val name: Output<String>, val type: Output<FlowNodeIoDataType>) : ConvertibleToJava<FlowNodeOutputArgs>

Output of a node in a flow

Constructors

Link copied to clipboard
constructor(name: Output<String>, type: Output<FlowNodeIoDataType>)

Properties

Link copied to clipboard
val name: Output<String>

Name of a node output in a flow

Link copied to clipboard

The data type of the output. If the output doesn't match this type at runtime, a validation error will be thrown.

Functions

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