You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "StartTaskContact API now supports linked task creation with a new optional RelatedContactId parameter"
6
+
},
7
+
{
8
+
"type": "feature",
9
+
"category": "ConnectCases",
10
+
"description": "This release adds the ability to delete domains through the DeleteDomain API. For more information see https://docs.aws.amazon.com/cases/latest/APIReference/Welcome.html"
11
+
},
12
+
{
13
+
"type": "feature",
14
+
"category": "SecurityHub",
15
+
"description": "New Security Hub APIs and updates to existing APIs that help you consolidate control findings and enable and disable controls across all supported standards"
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,12 @@
1
1
# Changelog for AWS SDK for JavaScript
2
-
<!--LATEST=2.1322.0-->
2
+
<!--LATEST=2.1323.0-->
3
3
<!--ENTRYINSERT-->
4
4
5
+
## 2.1323.0
6
+
* feature: Connect: StartTaskContact API now supports linked task creation with a new optional RelatedContactId parameter
7
+
* feature: ConnectCases: This release adds the ability to delete domains through the DeleteDomain API. For more information see https://docs.aws.amazon.com/cases/latest/APIReference/Welcome.html
8
+
* feature: SecurityHub: New Security Hub APIs and updates to existing APIs that help you consolidate control findings and enable and disable controls across all supported standards
9
+
5
10
## 2.1322.0
6
11
* feature: Appflow: This release enables the customers to choose whether to use Private Link for Metadata and Authorization call when using a private Salesforce connections
7
12
* feature: ECS: This release supports deleting Amazon ECS task definitions that are in the INACTIVE state.
Copy file name to clipboardExpand all lines: apis/connect-2017-08-08.normal.json
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -14066,6 +14066,10 @@
14066
14066
"QuickConnectId": {
14067
14067
"shape": "QuickConnectId",
14068
14068
"documentation": "<p>The identifier for the quick connect.</p>"
14069
+
},
14070
+
"RelatedContactId": {
14071
+
"shape": "ContactId",
14072
+
"documentation": "<p>The contactId that is <a href=\"https://docs.aws.amazon.com/connect/latest/adminguide/tasks.html#linked-tasks\">related</a> to this contact.</p>"
Copy file name to clipboardExpand all lines: apis/connectcases-2022-10-03.normal.json
+58-7Lines changed: 58 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -114,7 +114,7 @@
114
114
"shape": "ConflictException"
115
115
}
116
116
],
117
-
"documentation": "<p>Creates a case in the specified Cases domain. Case system and custom fields are taken as an array id/value pairs with a declared data types.</p> <note> <p> <code>customer_id</code> is a required field when creating a case.</p> </note>",
117
+
"documentation": "<p>Creates a case in the specified Cases domain. Case system and custom fields are taken as an array id/value pairs with a declared data types.</p> <note> <p>The following fields are required when creating a case:</p> <pre><code> <ul> <li> <p> <code>customer_id</code> - You must provide the full customer profile ARN in this format: <code>arn:aws:profile:your AWS Region:your AWS account ID:domains/profiles domain name/profiles/profile ID</code> </p> </li> <li> <p> <code>title</code> </p> </li> </ul> </note> </code></pre>",
118
118
"idempotent": true
119
119
},
120
120
"CreateDomain": {
@@ -150,7 +150,7 @@
150
150
"shape": "ServiceQuotaExceededException"
151
151
}
152
152
],
153
-
"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.</p> </important>",
153
+
"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>",
154
154
"idempotent": true
155
155
},
156
156
"CreateField": {
@@ -305,6 +305,42 @@
305
305
"documentation": "<p>Creates a template in the Cases domain. This template is used to define the case object model (that is, to define what data can be captured on cases) in a Cases domain. A template must have a unique name within a domain, and it must reference existing field IDs and layout IDs. Additionally, multiple fields with same IDs are not allowed within the same Template. A template can be either Active or Inactive, as indicated by its status. Inactive templates cannot be used to create cases.</p>",
306
306
"idempotent": true
307
307
},
308
+
"DeleteDomain": {
309
+
"name": "DeleteDomain",
310
+
"http": {
311
+
"method": "DELETE",
312
+
"requestUri": "/domains/{domainId}",
313
+
"responseCode": 200
314
+
},
315
+
"input": {
316
+
"shape": "DeleteDomainRequest"
317
+
},
318
+
"output": {
319
+
"shape": "DeleteDomainResponse"
320
+
},
321
+
"errors": [
322
+
{
323
+
"shape": "InternalServerException"
324
+
},
325
+
{
326
+
"shape": "ResourceNotFoundException"
327
+
},
328
+
{
329
+
"shape": "ValidationException"
330
+
},
331
+
{
332
+
"shape": "ThrottlingException"
333
+
},
334
+
{
335
+
"shape": "AccessDeniedException"
336
+
},
337
+
{
338
+
"shape": "ConflictException"
339
+
}
340
+
],
341
+
"documentation": "<p>Deletes a domain.</p>",
342
+
"idempotent": true
343
+
},
308
344
"GetCase": {
309
345
"name": "GetCase",
310
346
"http": {
@@ -749,7 +785,7 @@
749
785
"shape": "AccessDeniedException"
750
786
}
751
787
],
752
-
"documentation": "<p>Searches for cases within their associated Cases domain. Search results are returned as a paginated list of abridged case documents.</p>"
788
+
"documentation": "<p>Searches for cases within their associated Cases domain. Search results are returned as a paginated list of abridged case documents.</p> <note> <p>For <code>customer_id</code> you must provide the full customer profile ARN in this format: <code> arn:aws:profile:your AWS Region:your AWS account ID:domains/profiles domain name/profiles/profile ID</code>. </p> </note>"
753
789
},
754
790
"SearchRelatedItems": {
755
791
"name": "SearchRelatedItems",
@@ -1590,6 +1626,24 @@
1590
1626
"type": "timestamp",
1591
1627
"timestampFormat": "iso8601"
1592
1628
},
1629
+
"DeleteDomainRequest": {
1630
+
"type": "structure",
1631
+
"required": [
1632
+
"domainId"
1633
+
],
1634
+
"members": {
1635
+
"domainId": {
1636
+
"shape": "DomainId",
1637
+
"documentation": "<p>The unique identifier of the Cases domain. </p>",
"documentation": "<p>List of filters used on the ListTemplates result set</p>",
3151
3202
"max": 2,
3152
3203
"min": 1
3153
3204
},
@@ -3363,5 +3414,5 @@
3363
3414
"min": 0
3364
3415
}
3365
3416
},
3366
-
"documentation": "<p>Welcome to the Amazon Connect Cases API Reference. This guide provides information about the Amazon Connect Cases API, which you can use to create, update, get, and list Cases domains, fields, field options, layouts, templates, cases, related items, and tags.</p> <pre><code> <p>For more information about Amazon Connect Cases, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/cases.html">Amazon Connect Cases</a> in the <i>Amazon Connect Administrator Guide</i>. </p> </code></pre>"
3417
+
"documentation": "<p>With Amazon Connect Cases, your agents can track and manage customer issues that require multiple interactions, follow-up tasks, and teams in your contact center. A case represents a customer issue. It records the issue, the steps and interactions taken to resolve the issue, and the outcome. For more information, see <a href=\"https://docs.aws.amazon.com/connect/latest/adminguide/cases.html\">Amazon Connect Cases</a> in the <i>Amazon Connect Administrator Guide</i>.</p>"
0 commit comments