Values.GetTranscriptRequestSourceRetrieves a transcript of the session, including details about any attachments. For information about accessing past chat contact transcripts for a persistent chat, see Enable persistent chat. For security recommendations, see Amazon Connect Chat security best practices. If you have a process that consumes events in the transcript of an chat that has ended, note that chat transcripts contain the following event content types if the event has occurred during the chat session: application/vnd.amazonaws.connect.event.participant.invited application/vnd.amazonaws.connect.event.participant.joined application/vnd.amazonaws.connect.event.participant.left application/vnd.amazonaws.connect.event.chat.ended application/vnd.amazonaws.connect.event.transfer.succeeded application/vnd.amazonaws.connect.event.transfer.failed ConnectionToken is used for invoking this API instead of ParticipantToken. The Amazon Connect Participant Service APIs do not use Signature Version 4 authentication.
type nonrec t = {contactId : ContactId.t option;The contactId from the current contact chain for which transcript is needed.
*)maxResults : MaxResults.t option;The maximum number of results to return in the page. Default: 10.
*)nextToken : NextToken.t option;The pagination token. Use the value returned previously in the next subsequent request to retrieve the next set of results.
*)scanDirection : ScanDirection.t option;The direction from StartPosition from which to retrieve message. Default: BACKWARD when no StartPosition is provided, FORWARD with StartPosition.
*)sortOrder : SortKey.t option;The sort order for the records. Default: DESCENDING.
*)startPosition : StartPosition.t option;A filtering option for where to start.
*)connectionToken : ParticipantToken.t;The authentication token associated with the participant's connection.
*)}val make :
?contactId:??? ->
?maxResults:??? ->
?nextToken:??? ->
?scanDirection:??? ->
?sortOrder:??? ->
?startPosition:??? ->
connectionToken:ParticipantToken.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of MaxResults.t
| `String of ContactId.t
| `Structure of
(string * [> `Integer of MostRecent.t | `String of ChatItemId.t ])
list ])
list ]