NodeOutputField¶
Structure Class¶
NodeOutputField
dataclass
¶
Represents an output field produced by a node during a flow execution.
Note
Flow executions is in preview release for Amazon Bedrock and is subject to change.
Attributes¶
content
class-attribute
instance-attribute
¶
content: NodeExecutionContent = field(repr=False)
The content of the output field, which can contain text or structured data.
name
instance-attribute
¶
name: str
The name of the output field as defined in the node's output schema.
next
class-attribute
instance-attribute
¶
next: list[NodeOutputNext] | None = None
The next node that receives output data from this field.
type
class-attribute
instance-attribute
¶
type: FlowNodeIODataType | None = None
The data type of the output field for compatibility validation.