Class: Aws::BedrockAgentRuntime::Types::Rationale
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentRuntime::Types::Rationale
- Defined in:
- gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb
Overview
Contains the reasoning, based on the input, that the agent uses to justify carrying out an action group or getting information from a knowledge base.
Constant Summary collapse
- SENSITIVE =
[:text]
Instance Attribute Summary collapse
-
#text ⇒ String
The reasoning or thought process of the agent, based on the input.
-
#trace_id ⇒ String
The unique identifier of the trace step.
Instance Attribute Details
#text ⇒ String
The reasoning or thought process of the agent, based on the input.
3796 3797 3798 3799 3800 3801 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 3796 class Rationale < Struct.new( :text, :trace_id) SENSITIVE = [:text] include Aws::Structure end |