Class: Aws::HealthLake::Types::AgentOutputMessage

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

Instance Attribute Details

#bodyString

The text of the agent's response.

Returns:

  • (String)


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_listArray<String>

A list of selectable options presented when the response type is options.

Returns:

  • (Array<String>)


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

#typeString

The type of output message, which indicates how to interpret the agent's response.

Returns:

  • (String)


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