Class: Aws::HealthLake::Types::AgentOutputMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::HealthLake::Types::AgentOutputMessage
- Defined in:
- gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb
Overview
Represents a response message from the agent during chat-based profile customization.
Constant Summary collapse
- SENSITIVE =
[:body, :options_list]
Instance Attribute Summary collapse
-
#body ⇒ String
The text of the agent's response.
-
#options_list ⇒ Array<String>
A list of selectable options presented when the response type is
options. -
#type ⇒ String
The type of output message, which indicates how to interpret the agent's response.
Instance Attribute Details
#body ⇒ String
The text of the agent's response.
88 89 90 91 92 93 94 |
# File 'gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb', line 88 class AgentOutputMessage < Struct.new( :body, :type, :options_list) SENSITIVE = [:body, :options_list] include Aws::Structure end |
#options_list ⇒ Array<String>
A list of selectable options presented when the response type is
options.
88 89 90 91 92 93 94 |
# File 'gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb', line 88 class AgentOutputMessage < Struct.new( :body, :type, :options_list) SENSITIVE = [:body, :options_list] include Aws::Structure end |
#type ⇒ String
The type of output message, which indicates how to interpret the agent's response.
88 89 90 91 92 93 94 |
# File 'gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb', line 88 class AgentOutputMessage < Struct.new( :body, :type, :options_list) SENSITIVE = [:body, :options_list] include Aws::Structure end |