Skip to content

Commit 470e482

Browse files
author
AWS
committed
Amazon Connect Participant Service Update: Amazon Connect now supports message processing that intercepts and processes chat messages before they reach any participant.
1 parent d628587 commit 470e482

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon Connect Participant Service",
4+
"contributor": "",
5+
"description": "Amazon Connect now supports message processing that intercepts and processes chat messages before they reach any participant."
6+
}

services/connectparticipant/src/main/resources/codegen-resources/service-2.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -763,10 +763,32 @@
763763
"Receipts":{
764764
"shape":"Receipts",
765765
"documentation":"<p>The list of receipt information for a message for different recipients.</p>"
766+
},
767+
"MessageProcessingStatus":{
768+
"shape":"MessageProcessingStatus",
769+
"documentation":"<p>The status of Message Processing for the message.</p>"
766770
}
767771
},
768772
"documentation":"<p>Contains metadata related to a message.</p>"
769773
},
774+
"MessageProcessingMetadata":{
775+
"type":"structure",
776+
"members":{
777+
"MessageProcessingStatus":{
778+
"shape":"MessageProcessingStatus",
779+
"documentation":"<p>The status of Message Processing for the message.</p>"
780+
}
781+
},
782+
"documentation":"<p>Contains metadata for chat messages.</p>"
783+
},
784+
"MessageProcessingStatus":{
785+
"type":"string",
786+
"enum":[
787+
"PROCESSING",
788+
"FAILED",
789+
"REJECTED"
790+
]
791+
},
770792
"MostRecent":{
771793
"type":"integer",
772794
"max":100,
@@ -962,6 +984,10 @@
962984
"AbsoluteTime":{
963985
"shape":"Instant",
964986
"documentation":"<p>The time when the message was sent.</p> <p>It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.</p>"
987+
},
988+
"MessageMetadata":{
989+
"shape":"MessageProcessingMetadata",
990+
"documentation":"<p>Contains metadata for the message.</p>"
965991
}
966992
}
967993
},

0 commit comments

Comments
 (0)