Class: Aws::BedrockAgentRuntime::Types::AgenticRetrieveMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentRuntime::Types::AgenticRetrieveMessage
- Defined in:
- gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb
Overview
A message in the agentic retrieval conversation.
Constant Summary collapse
- SENSITIVE =
[:content]
Instance Attribute Summary collapse
-
#content ⇒ Types::AgenticRetrieveMessageContent
The content of the message.
-
#role ⇒ String
The role of the message sender (e.g., user or assistant).
Instance Attribute Details
#content ⇒ Types::AgenticRetrieveMessageContent
The content of the message.
640 641 642 643 644 645 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 640 class AgenticRetrieveMessage < Struct.new( :content, :role) SENSITIVE = [:content] include Aws::Structure end |
#role ⇒ String
The role of the message sender (e.g., user or assistant).
640 641 642 643 644 645 |
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 640 class AgenticRetrieveMessage < Struct.new( :content, :role) SENSITIVE = [:content] include Aws::Structure end |