Skip to content

Bedrock Agent Runtime  >  Structures  >  FlowTraceNodeInputField

FlowTraceNodeInputField

Structure Class

FlowTraceNodeInputField dataclass

Contains information about a field in the input into a node. For more information, see Track each step in your prompt flow by viewing its trace in Amazon Bedrock.

Attributes

category class-attribute instance-attribute
category: FlowNodeInputCategory | None = None

The category of the input field.

content class-attribute instance-attribute
content: FlowTraceNodeInputContent = field(repr=False)

The content of the node input.

execution_chain class-attribute instance-attribute
execution_chain: list[FlowTraceNodeInputExecutionChainItem] | None = field(repr=False, default=None)

The execution path through nested nodes like iterators and loops.

node_input_name instance-attribute
node_input_name: str

The name of the node input.

source class-attribute instance-attribute
source: FlowTraceNodeInputSource | None = field(repr=False, default=None)

The source node that provides input data to this field.

type class-attribute instance-attribute
type: FlowNodeIODataType | None = None

The data type of the input field for compatibility validation.