Class: Aws::HealthLake::Types::AgentInputMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::HealthLake::Types::AgentInputMessage
- Defined in:
- gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb
Overview
Represents a message sent to the agent during chat-based profile customization.
Constant Summary collapse
- SENSITIVE =
[:body]
Instance Attribute Summary collapse
-
#body ⇒ String
The text of your message to the agent.
-
#type ⇒ String
The type of input message, which determines how the agent processes your request.
Instance Attribute Details
#body ⇒ String
The text of your message to the agent.
47 48 49 50 51 52 |
# File 'gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb', line 47 class AgentInputMessage < Struct.new( :body, :type) SENSITIVE = [:body] include Aws::Structure end |
#type ⇒ String
The type of input message, which determines how the agent processes your request. Valid values:
normal: A regular message to the agent.confirmation_response: A response to a confirmation request from the agent.
47 48 49 50 51 52 |
# File 'gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb', line 47 class AgentInputMessage < Struct.new( :body, :type) SENSITIVE = [:body] include Aws::Structure end |