Skip to content

Commit c2e0106

Browse files
author
AWS
committed
Amazon Connect Cases Update: This release adds the ability to assign a case to a queue or user.
1 parent 8bce810 commit c2e0106

File tree

2 files changed

+29
-3
lines changed

2 files changed

+29
-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 Cases",
4+
"contributor": "",
5+
"description": "This release adds the ability to assign a case to a queue or user."
6+
}

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

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
{"shape":"ConflictException"},
8989
{"shape":"ServiceQuotaExceededException"}
9090
],
91-
"documentation":"<p>Creates a domain, which is a container for all case data, such as cases, fields, templates and layouts. Each Amazon Connect instance can be associated with only one Cases domain.</p> <important> <p>This will not associate your connect instance to Cases domain. Instead, use the Amazon Connect <a href=\"https://docs.aws.amazon.com/connect/latest/APIReference/API_CreateIntegrationAssociation.html\">CreateIntegrationAssociation</a> API. You need specific IAM permissions to successfully associate the Cases domain. For more information, see <a href=\"https://docs.aws.amazon.com/connect/latest/adminguide/required-permissions-iam-cases.html#onboard-cases-iam\">Onboard to Cases</a>.</p> </important>",
91+
"documentation":"<p>Creates a domain, which is a container for all case data, such as cases, fields, templates and layouts. Each Amazon Connect instance can be associated with only one Cases domain.</p> <important> <p>This will not associate your connect instance to Cases domain. Instead, use the Amazon Connect <a href=\"https://docs.aws.amazon.com/connect/latest/APIReference/API_CreateIntegrationAssociation.html\">CreateIntegrationAssociation</a> API. You need specific IAM permissions to successfully associate the Cases domain. For more information, see <a href=\"https://docs.aws.amazon.com/connect/latest/adminguide/required-permissions-iam-cases.html#onboard-cases-iam\">Onboard to Cases</a>.</p> <pre><code> &lt;/important&gt; </code></pre>",
9292
"idempotent":true
9393
},
9494
"CreateField":{
@@ -190,7 +190,7 @@
190190
{"shape":"AccessDeniedException"},
191191
{"shape":"ConflictException"}
192192
],
193-
"documentation":"<p>Deletes a domain.</p>",
193+
"documentation":"<p>Deletes a Cases domain.</p> <pre><code> &lt;note&gt; &lt;p&gt;After deleting your domain you must disassociate the deleted domain from your Amazon Connect instance with another API call before being able to use Cases again with this Amazon Connect instance. See &lt;a href=&quot;https://docs.aws.amazon.com/connect/latest/APIReference/API_DeleteIntegrationAssociation.html&quot;&gt;DeleteIntegrationAssociation&lt;/a&gt;.&lt;/p&gt; &lt;/note&gt; </code></pre>",
194194
"idempotent":true
195195
},
196196
"GetCase":{
@@ -754,7 +754,11 @@
754754
"shape":"FieldFilter",
755755
"documentation":"<p>A list of fields to filter on.</p>"
756756
},
757-
"not":{"shape":"CaseFilter"}
757+
"not":{"shape":"CaseFilter"},
758+
"orAll":{
759+
"shape":"CaseFilterOrAllList",
760+
"documentation":"<p>Provides \"or all\" filtering.</p>"
761+
}
758762
},
759763
"documentation":"<p>A filter for cases. Only one value can be provided.</p>",
760764
"union":true
@@ -765,6 +769,12 @@
765769
"max":10,
766770
"min":0
767771
},
772+
"CaseFilterOrAllList":{
773+
"type":"list",
774+
"member":{"shape":"CaseFilter"},
775+
"max":10,
776+
"min":0
777+
},
768778
"CaseId":{
769779
"type":"string",
770780
"max":500,
@@ -1253,6 +1263,12 @@
12531263
"type":"double",
12541264
"box":true
12551265
},
1266+
"EmptyFieldValue":{
1267+
"type":"structure",
1268+
"members":{
1269+
},
1270+
"documentation":"<p>An empty value. You cannot set <code>EmptyFieldValue</code> on a field that is required on a case template.</p> <p>This structure will never have any data members. It signifies an empty value on a case field.</p>"
1271+
},
12561272
"EventBridgeConfiguration":{
12571273
"type":"structure",
12581274
"required":["enabled"],
@@ -1546,6 +1562,10 @@
15461562
"shape":"Double",
15471563
"documentation":"<p>Can be either null, or have a Double number value type. Only one value can be provided.</p>"
15481564
},
1565+
"emptyValue":{
1566+
"shape":"EmptyFieldValue",
1567+
"documentation":"<p>An empty value.</p>"
1568+
},
15491569
"stringValue":{
15501570
"shape":"FieldValueUnionStringValueString",
15511571
"documentation":"<p>String value type.</p>"

0 commit comments

Comments
 (0)