Class: Aws::QConnect::Types::EmailGenerativeAnswerChunkDataDetails

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-qconnect/types.rb

Overview

Details of streaming chunk data for email generative answers including completion text and references.

Constant Summary collapse

SENSITIVE =
[:completion]

Instance Attribute Summary collapse

Instance Attribute Details

#completionString

The partial or complete text content of the generative answer response.

Returns:

  • (String)


4320
4321
4322
4323
4324
4325
4326
# File 'lib/aws-sdk-qconnect/types.rb', line 4320

class EmailGenerativeAnswerChunkDataDetails < Struct.new(
  :completion,
  :references,
  :next_chunk_token)
  SENSITIVE = [:completion]
  include Aws::Structure
end

#next_chunk_tokenString

Token for retrieving the next chunk of streaming response data, if available.

Returns:

  • (String)


4320
4321
4322
4323
4324
4325
4326
# File 'lib/aws-sdk-qconnect/types.rb', line 4320

class EmailGenerativeAnswerChunkDataDetails < Struct.new(
  :completion,
  :references,
  :next_chunk_token)
  SENSITIVE = [:completion]
  include Aws::Structure
end

#referencesArray<Types::DataSummary>

Source references and citations from knowledge base articles used to generate the answer.

Returns:



4320
4321
4322
4323
4324
4325
4326
# File 'lib/aws-sdk-qconnect/types.rb', line 4320

class EmailGenerativeAnswerChunkDataDetails < Struct.new(
  :completion,
  :references,
  :next_chunk_token)
  SENSITIVE = [:completion]
  include Aws::Structure
end