Skip to content

Commit 630a38e

Browse files
author
AWS
committed
Amazon Connect Service Update: This release adds support for enabling Rich Messaging when starting a new chat session via the StartChatContact API. Rich Messaging enables the following formatting options: bold, italics, hyperlinks, bulleted lists, and numbered lists.
1 parent 759cbf5 commit 630a38e

File tree

2 files changed

+22
-3
lines changed

2 files changed

+22
-3
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 Service",
4+
"contributor": "",
5+
"description": "This release adds support for enabling Rich Messaging when starting a new chat session via the StartChatContact API. Rich Messaging enables the following formatting options: bold, italics, hyperlinks, bulleted lists, and numbered lists."
6+
}

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

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1614,7 +1614,7 @@
16141614
{"shape":"ResourceNotFoundException"},
16151615
{"shape":"InternalServiceException"}
16161616
],
1617-
"documentation":"<p>Starts recording the contact when the agent joins the call. StartContactRecording is a one-time action. For example, if you use StopContactRecording to stop recording an ongoing call, you can't use StartContactRecording to restart it. For scenarios where the recording has started and you want to suspend and resume it, such as when collecting sensitive information (for example, a credit card number), use SuspendContactRecording and ResumeContactRecording.</p> <p>You can use this API to override the recording behavior configured in the <a href=\"https://docs.aws.amazon.com/connect/latest/adminguide/set-recording-behavior.html\">Set recording behavior</a> block.</p> <p>Only voice recordings are supported at this time.</p>"
1617+
"documentation":"<p>Starts recording the contact: </p> <ul> <li> <p>If the API is called <i>before</i> the agent joins the call, recording starts when the agent joins the call.</p> </li> <li> <p>If the API is called <i>after</i> the agent joins the call, recording starts at the time of the API call.</p> </li> </ul> <p>StartContactRecording is a one-time action. For example, if you use StopContactRecording to stop recording an ongoing call, you can't use StartContactRecording to restart it. For scenarios where the recording has started and you want to suspend and resume it, such as when collecting sensitive information (for example, a credit card number), use SuspendContactRecording and ResumeContactRecording.</p> <p>You can use this API to override the recording behavior configured in the <a href=\"https://docs.aws.amazon.com/connect/latest/adminguide/set-recording-behavior.html\">Set recording behavior</a> block.</p> <p>Only voice recordings are supported at this time.</p>"
16181618
},
16191619
"StartContactStreaming":{
16201620
"name":"StartContactStreaming",
@@ -1685,7 +1685,7 @@
16851685
{"shape":"ResourceNotFoundException"},
16861686
{"shape":"InternalServiceException"}
16871687
],
1688-
"documentation":"<p>Ends the specified contact.</p>"
1688+
"documentation":"<p>Ends the specified contact. This call does not work for the following initiation methods:</p> <ul> <li> <p>CALLBACK</p> </li> <li> <p>DISCONNECT</p> </li> <li> <p>TRANSFER</p> </li> <li> <p>QUEUE_TRANSFER</p> </li> </ul>"
16891689
},
16901690
"StopContactRecording":{
16911691
"name":"StopContactRecording",
@@ -2774,7 +2774,7 @@
27742774
"members":{
27752775
"ContentType":{
27762776
"shape":"ChatContentType",
2777-
"documentation":"<p>The type of the content. Supported types are text and plain.</p>"
2777+
"documentation":"<p>The type of the content. Supported types are <code>text/plain</code>.</p>"
27782778
},
27792779
"Content":{
27802780
"shape":"ChatContent",
@@ -8441,6 +8441,10 @@
84418441
"ChatDurationInMinutes":{
84428442
"shape":"ChatDurationInMinutes",
84438443
"documentation":"<p>The total duration of the newly started chat session. If not specified, the chat session duration defaults to 25 hour. The minumum configurable time is 60 minutes. The maximum configurable time is 10,080 minutes (7 days).</p>"
8444+
},
8445+
"SupportedMessagingContentTypes":{
8446+
"shape":"SupportedMessagingContentTypes",
8447+
"documentation":"<p>The supported chat message content types. Content types can be text/plain or both text/plain and text/markdown.</p>"
84448448
}
84458449
}
84468450
},
@@ -8746,6 +8750,15 @@
87468750
"min":1
87478751
},
87488752
"String":{"type":"string"},
8753+
"SupportedMessagingContentType":{
8754+
"type":"string",
8755+
"max":100,
8756+
"min":1
8757+
},
8758+
"SupportedMessagingContentTypes":{
8759+
"type":"list",
8760+
"member":{"shape":"SupportedMessagingContentType"}
8761+
},
87498762
"SuspendContactRecordingRequest":{
87508763
"type":"structure",
87518764
"required":[

0 commit comments

Comments
 (0)