Skip to content

Bedrock Agent Runtime  >  Structures  >  FlowTraceNodeActionEvent

FlowTraceNodeActionEvent

Structure Class

FlowTraceNodeActionEvent dataclass

Contains information about an action (operation) called by a node in an Amazon Bedrock flow. The service generates action events for calls made by prompt nodes, agent nodes, and Amazon Web Services Lambda nodes.

Attributes

node_name instance-attribute
node_name: str

The name of the node that called the operation.

operation_name instance-attribute
operation_name: str

The name of the operation that the node called.

operation_request class-attribute instance-attribute
operation_request: Document | None = None

The request payload sent to the downstream service.

operation_response class-attribute instance-attribute
operation_response: Document | None = None

The response payload received from the downstream service.

request_id instance-attribute
request_id: str

The ID of the request that the node made to the operation.

service_name instance-attribute
service_name: str

The name of the service that the node called.

timestamp instance-attribute
timestamp: datetime

The date and time that the operation was called.