FlowNodeArgs

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
val configuration: Output<Any>? = null

Contains configurations for the node.

Link copied to clipboard
val inputs: Output<List<FlowNodeInputArgs>>? = null

List of node inputs in a flow

Link copied to clipboard
val name: Output<String>

Name of a node in a flow

Link copied to clipboard
val outputs: Output<List<FlowNodeOutputArgs>>? = null

List of node outputs in a flow

Link copied to clipboard
val type: Output<FlowNodeType>

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.

Functions

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