Class: Aws::HealthLake::Types::AgentInputMessage

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#bodyString

The text of your message to the agent.

Returns:

  • (String)


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

#typeString

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.

Returns:

  • (String)


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