Class: Aws::QConnect::Types::EmailResponseChunkDataDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::EmailResponseChunkDataDetails
- Defined in:
- gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb
Overview
Details of streaming chunk data for email responses including completion text and pagination tokens.
Constant Summary collapse
- SENSITIVE =
[:completion]
Instance Attribute Summary collapse
-
#completion ⇒ String
The partial or complete professional email response text with appropriate greetings and closings.
-
#next_chunk_token ⇒ String
Token for retrieving the next chunk of streaming response data, if available.
Instance Attribute Details
#completion ⇒ String
The partial or complete professional email response text with appropriate greetings and closings.
4491 4492 4493 4494 4495 4496 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4491 class EmailResponseChunkDataDetails < Struct.new( :completion, :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.
4491 4492 4493 4494 4495 4496 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 4491 class EmailResponseChunkDataDetails < Struct.new( :completion, :next_chunk_token) SENSITIVE = [:completion] include Aws::Structure end |