Class: Aws::BedrockAgentRuntime::Types::FlowTraceEvent
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentRuntime::Types::FlowTraceEvent
- Defined in:
- gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb
Overview
Contains information about a trace, which tracks an input or output for a node in the flow. For more information, see Track each step in your prompt flow by viewing its trace in Amazon Bedrock.
Constant Summary collapse
- SENSITIVE =
[:trace]
Instance Attribute Summary collapse
-
#event_type ⇒ Object
Returns the value of attribute event_type.
-
#trace ⇒ Types::FlowTrace
The trace object containing information about an input or output for a node in the flow.
Instance Attribute Details
#event_type ⇒ Object
Returns the value of attribute event_type
1094 1095 1096 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 1094 def event_type @event_type end |
#trace ⇒ Types::FlowTrace
The trace object containing information about an input or output for a node in the flow.
1094 1095 1096 1097 1098 1099 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 1094 class FlowTraceEvent < Struct.new( :trace, :event_type) SENSITIVE = [:trace] include Aws::Structure end |