Flow Node Args
data class FlowNodeArgs(val configuration: Output<Any>? = null, val inputs: Output<List<FlowNodeInputArgs>>? = null, val name: Output<String>, val outputs: Output<List<FlowNodeOutputArgs>>? = null, val type: Output<FlowNodeType>) : ConvertibleToJava<FlowNodeArgs>
Internal mixin for flow node
Constructors
Link copied to clipboard
constructor(configuration: Output<Any>? = null, inputs: Output<List<FlowNodeInputArgs>>? = null, name: Output<String>, outputs: Output<List<FlowNodeOutputArgs>>? = null, type: Output<FlowNodeType>)
Properties
Link copied to clipboard
Contains configurations for the node.
Link copied to clipboard
List of node inputs in a flow
Link copied to clipboard
List of node outputs in a flow
Link copied to clipboard
The type of node. This value must match the name of the key that you provide in the configuration you provide in the FlowNodeConfiguration
field.