Skip to content

Commit fe36f6a

Browse files
author
AWS
committed
Amazon Connect Cases Update: This release adds the ability to add/view comment authors through CreateRelatedItem and SearchRelatedItems API. For more information see https://docs.aws.amazon.com/cases/latest/APIReference/Welcome.html
1 parent 46a8c2c commit fe36f6a

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
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 Cases",
4+
"contributor": "",
5+
"description": "This release adds the ability to add/view comment authors through CreateRelatedItem and SearchRelatedItems API. For more information see https://docs.aws.amazon.com/cases/latest/APIReference/Welcome.html"
6+
}

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

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149
{"shape":"AccessDeniedException"},
150150
{"shape":"ServiceQuotaExceededException"}
151151
],
152-
"documentation":"<p>Creates a related item (comments, tasks, and contacts) and associates it with a case.</p> <note> <p>A Related Item is a resource that is associated with a case. It may or may not have an external identifier linking it to an external resource (for example, a <code>contactArn</code>). All Related Items have their own internal identifier, the <code>relatedItemArn</code>. Examples of related items include <code>comments</code> and <code>contacts</code>.</p> </note>",
152+
"documentation":"<p>Creates a related item (comments, tasks, and contacts) and associates it with a case.</p> <note> <ul> <li> <p>A Related Item is a resource that is associated with a case. It may or may not have an external identifier linking it to an external resource (for example, a <code>contactArn</code>). All Related Items have their own internal identifier, the <code>relatedItemArn</code>. Examples of related items include <code>comments</code> and <code>contacts</code>.</p> </li> <li> <p>If you provide a value for <code>performedBy.userArn</code> you must also have <a href=\"https://docs.aws.amazon.com/connect/latest/APIReference/API_DescribeUser.html\">DescribeUser</a> permission on the ARN of the user that you provide.</p> </li> </ul> <pre><code> &lt;/note&gt; </code></pre>",
153153
"idempotent":true
154154
},
155155
"CreateTemplate":{
@@ -1112,6 +1112,10 @@
11121112
"location":"uri",
11131113
"locationName":"domainId"
11141114
},
1115+
"performedBy":{
1116+
"shape":"UserUnion",
1117+
"documentation":"<p>Represents the creator of the related item.</p>"
1118+
},
11151119
"type":{
11161120
"shape":"RelatedItemType",
11171121
"documentation":"<p>The type of a related item.</p>"
@@ -2607,6 +2611,10 @@
26072611
"shape":"RelatedItemContent",
26082612
"documentation":"<p>Represents the content of a particular type of related item.</p>"
26092613
},
2614+
"performedBy":{
2615+
"shape":"UserUnion",
2616+
"documentation":"<p>Represents the creator of the related item.</p>"
2617+
},
26102618
"relatedItemId":{
26112619
"shape":"RelatedItemId",
26122620
"documentation":"<p>Unique identifier of a related item.</p>"
@@ -2962,6 +2970,22 @@
29622970
"members":{
29632971
}
29642972
},
2973+
"UserArn":{
2974+
"type":"string",
2975+
"max":500,
2976+
"min":1
2977+
},
2978+
"UserUnion":{
2979+
"type":"structure",
2980+
"members":{
2981+
"userArn":{
2982+
"shape":"UserArn",
2983+
"documentation":"<p>Represents the Amazon Connect ARN of the user.</p>"
2984+
}
2985+
},
2986+
"documentation":"<p>Represents the identity of the person who performed the action.</p>",
2987+
"union":true
2988+
},
29652989
"ValidationException":{
29662990
"type":"structure",
29672991
"required":["message"],

0 commit comments

Comments
 (0)