FlowNodeInputArgs

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

Input to a node in a flow

Constructors

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

Properties

Link copied to clipboard
val expression: Output<String>

Expression for a node input in a flow

Link copied to clipboard
val name: Output<String>

Name of a node input in a flow

Link copied to clipboard

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

Functions

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