Class: Aws::QConnect::Types::EmailGenerativeAnswerChunkDataDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::EmailGenerativeAnswerChunkDataDetails
- Defined in:
- gems/aws-sdk-qconnect/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
-
#completion ⇒ String
The partial or complete text content of the generative answer response.
-
#next_chunk_token ⇒ String
Token for retrieving the next chunk of streaming response data, if available.
-
#references ⇒ Array<Types::DataSummary>
Source references and citations from knowledge base articles used to generate the answer.
Instance Attribute Details
#completion ⇒ String
The partial or complete text content of the generative answer response.
4061 4062 4063 4064 4065 4066 4067 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4061 class EmailGenerativeAnswerChunkDataDetails < Struct.new( :completion, :references, :next_chunk_token) SENSITIVE = [:completion] include Aws::Structure end |
#next_chunk_token ⇒ String
Token for retrieving the next chunk of streaming response data, if available.
4061 4062 4063 4064 4065 4066 4067 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4061 class EmailGenerativeAnswerChunkDataDetails < Struct.new( :completion, :references, :next_chunk_token) SENSITIVE = [:completion] include Aws::Structure end |
#references ⇒ Array<Types::DataSummary>
Source references and citations from knowledge base articles used to generate the answer.
4061 4062 4063 4064 4065 4066 4067 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4061 class EmailGenerativeAnswerChunkDataDetails < Struct.new( :completion, :references, :next_chunk_token) SENSITIVE = [:completion] include Aws::Structure end |