Class: Aws::DevOpsAgent::Types::SendMessageContext
- Inherits:
-
Struct
- Object
- Struct
- Aws::DevOpsAgent::Types::SendMessageContext
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devopsagent/types.rb
Overview
Context object for additional message metadata
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#current_page ⇒ String
The current page or view the user is on.
-
#last_message ⇒ String
The ID of the last message in the conversation.
-
#user_action_response ⇒ String
Response to a UI prompt (not a text conversation message).
Instance Attribute Details
#current_page ⇒ String
The current page or view the user is on
5318 5319 5320 5321 5322 5323 5324 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 5318 class SendMessageContext < Struct.new( :current_page, :last_message, :user_action_response) SENSITIVE = [] include Aws::Structure end |
#last_message ⇒ String
The ID of the last message in the conversation
5318 5319 5320 5321 5322 5323 5324 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 5318 class SendMessageContext < Struct.new( :current_page, :last_message, :user_action_response) SENSITIVE = [] include Aws::Structure end |
#user_action_response ⇒ String
Response to a UI prompt (not a text conversation message). Operator App SDK clients set this to the control-string sentinel ‘“APPROVAL_ACTION”` when the request is resuming a paused tool call after an operator approval decision; in that case the structured decision context lives on the sibling `approvalAction` member and the chat agent reads from there. Preserved as a String for back-compat: pre-typed-approval clients still encode arbitrary UI-prompt responses as JSON in this field, and the chat agent parses them out during the transition.
5318 5319 5320 5321 5322 5323 5324 |
# File 'lib/aws-sdk-devopsagent/types.rb', line 5318 class SendMessageContext < Struct.new( :current_page, :last_message, :user_action_response) SENSITIVE = [] include Aws::Structure end |