Class: Aws::BedrockAgentRuntime::Types::InlineAgentTracePart
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentRuntime::Types::InlineAgentTracePart
- Defined in:
- gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb
Overview
Contains information about the agent and session, alongside the agent's reasoning process and results from calling API actions and querying knowledge bases and metadata about the trace. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see Trace enablement.
Constant Summary collapse
- SENSITIVE =
[:trace]
Instance Attribute Summary collapse
-
#event_type ⇒ Object
Returns the value of attribute event_type.
-
#session_id ⇒ String
The unique identifier of the session with the agent.
-
#trace ⇒ Types::Trace
Contains one part of the agent's reasoning process and results from calling API actions and querying knowledge bases.
Instance Attribute Details
#event_type ⇒ Object
Returns the value of attribute event_type
2068 2069 2070 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 2068 def event_type @event_type end |
#session_id ⇒ String
The unique identifier of the session with the agent.
2068 2069 2070 2071 2072 2073 2074 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 2068 class InlineAgentTracePart < Struct.new( :session_id, :trace, :event_type) SENSITIVE = [:trace] include Aws::Structure end |
#trace ⇒ Types::Trace
Contains one part of the agent's reasoning process and results from calling API actions and querying knowledge bases. You can use the trace to understand how the agent arrived at the response it provided the customer. For more information, see Trace enablement.
2068 2069 2070 2071 2072 2073 2074 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 2068 class InlineAgentTracePart < Struct.new( :session_id, :trace, :event_type) SENSITIVE = [:trace] include Aws::Structure end |