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
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.1509.0-->
2
+
<!--LATEST=2.1510.0-->
3
3
<!--ENTRYINSERT-->
4
4
5
+
## 2.1510.0
6
+
* feature: QConnect: This release adds the PutFeedback API and allows providing feedback against the specified assistant for the specified target.
7
+
* feature: Rbin: Added resource identifier in the output and updated error handling.
8
+
* feature: VerifiedPermissions: Adds description field to PolicyStore API's and namespaces field to GetSchema.
9
+
5
10
## 2.1509.0
6
11
* feature: ARCZonalShift: This release adds a new capability, zonal autoshift. You can configure zonal autoshift so that AWS shifts traffic for a resource away from an Availability Zone, on your behalf, when AWS determines that there is an issue that could potentially affect customers in the Availability Zone.
7
12
* feature: Glue: Adds observation and analyzer support to the GetDataQualityResult and BatchGetDataQualityResult APIs.
Copy file name to clipboardExpand all lines: apis/qconnect-2020-10-19.normal.json
+130-4Lines changed: 130 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -168,7 +168,7 @@
168
168
"shape": "ResourceNotFoundException"
169
169
}
170
170
],
171
-
"documentation": "<p>Creates a Amazon Q quick response.</p>",
171
+
"documentation": "<p>Creates an Amazon Q quick response.</p>",
172
172
"idempotent": true
173
173
},
174
174
"CreateSession": {
@@ -794,6 +794,33 @@
794
794
"documentation": "<p>Removes the specified recommendations from the specified assistant's queue of newly available recommendations. You can use this API in conjunction with <a href=\"https://docs.aws.amazon.com/amazon-q-connect/latest/APIReference/API_GetRecommendations.html\">GetRecommendations</a> and a <code>waitTimeSeconds</code> input for long-polling behavior and avoiding duplicate recommendations.</p>",
"documentation": "<p>Provides feedback against the specified assistant for the specified target. This API only supports generative targets.</p>",
822
+
"idempotent": true
823
+
},
797
824
"QueryAssistant": {
798
825
"name": "QueryAssistant",
799
826
"http": {
@@ -902,7 +929,7 @@
902
929
"shape": "ResourceNotFoundException"
903
930
}
904
931
],
905
-
"documentation": "<p>Searches existing Amazon Q quick responses in a Amazon Q knowledge base.</p>"
932
+
"documentation": "<p>Searches existing Amazon Q quick responses in an Amazon Q knowledge base.</p>"
906
933
},
907
934
"SearchSessions": {
908
935
"name": "SearchSessions",
@@ -1264,7 +1291,7 @@
1264
1291
"documentation": "<p>The type of Amazon Q assistant capability. </p>"
1265
1292
}
1266
1293
},
1267
-
"documentation": "<p>The capability configuration for a Amazon Q assistant. </p>"
1294
+
"documentation": "<p>The capability configuration for an Amazon Q assistant. </p>"
1268
1295
},
1269
1296
"AssistantCapabilityType": {
1270
1297
"type": "string",
@@ -1577,6 +1604,17 @@
1577
1604
},
1578
1605
"documentation": "<p>Details about the content data.</p>"
1579
1606
},
1607
+
"ContentFeedbackData": {
1608
+
"type": "structure",
1609
+
"members": {
1610
+
"generativeContentFeedbackData": {
1611
+
"shape": "GenerativeContentFeedbackData",
1612
+
"documentation": "<p>Information about the feedback for a generative target type.</p>"
1613
+
}
1614
+
},
1615
+
"documentation": "<p>Information about the feedback.</p>",
1616
+
"union": true
1617
+
},
1580
1618
"ContentMetadata": {
1581
1619
"type": "map",
1582
1620
"key": {
@@ -2299,6 +2337,19 @@
2299
2337
"EQUALS"
2300
2338
]
2301
2339
},
2340
+
"GenerativeContentFeedbackData": {
2341
+
"type": "structure",
2342
+
"required": [
2343
+
"relevance"
2344
+
],
2345
+
"members": {
2346
+
"relevance": {
2347
+
"shape": "Relevance",
2348
+
"documentation": "<p>The relevance of the feedback.</p>"
2349
+
}
2350
+
},
2351
+
"documentation": "<p>The feedback information for a generative target type.</p>"
2352
+
},
2302
2353
"GenerativeDataDetails": {
2303
2354
"type": "structure",
2304
2355
"required": [
@@ -3352,6 +3403,67 @@
3352
3403
"LOW"
3353
3404
]
3354
3405
},
3406
+
"PutFeedbackRequest": {
3407
+
"type": "structure",
3408
+
"required": [
3409
+
"assistantId",
3410
+
"contentFeedback",
3411
+
"targetId",
3412
+
"targetType"
3413
+
],
3414
+
"members": {
3415
+
"assistantId": {
3416
+
"shape": "UuidOrArn",
3417
+
"documentation": "<p>The identifier of the Amazon Q assistant.</p>",
3418
+
"location": "uri",
3419
+
"locationName": "assistantId"
3420
+
},
3421
+
"contentFeedback": {
3422
+
"shape": "ContentFeedbackData",
3423
+
"documentation": "<p>Information about the feedback provided.</p>"
3424
+
},
3425
+
"targetId": {
3426
+
"shape": "Uuid",
3427
+
"documentation": "<p>The identifier of the feedback target.</p>"
3428
+
},
3429
+
"targetType": {
3430
+
"shape": "TargetType",
3431
+
"documentation": "<p>The type of the feedback target.</p>"
3432
+
}
3433
+
}
3434
+
},
3435
+
"PutFeedbackResponse": {
3436
+
"type": "structure",
3437
+
"required": [
3438
+
"assistantArn",
3439
+
"assistantId",
3440
+
"contentFeedback",
3441
+
"targetId",
3442
+
"targetType"
3443
+
],
3444
+
"members": {
3445
+
"assistantArn": {
3446
+
"shape": "UuidOrArn",
3447
+
"documentation": "<p>The Amazon Resource Name (ARN) of the Amazon Q assistant.</p>"
3448
+
},
3449
+
"assistantId": {
3450
+
"shape": "Uuid",
3451
+
"documentation": "<p>The identifier of the Amazon Q assistant.</p>"
3452
+
},
3453
+
"contentFeedback": {
3454
+
"shape": "ContentFeedbackData",
3455
+
"documentation": "<p>Information about the feedback provided.</p>"
3456
+
},
3457
+
"targetId": {
3458
+
"shape": "Uuid",
3459
+
"documentation": "<p>The identifier of the feedback target.</p>"
3460
+
},
3461
+
"targetType": {
3462
+
"shape": "TargetType",
3463
+
"documentation": "<p>The type of the feedback target.</p>"
3464
+
}
3465
+
}
3466
+
},
3355
3467
"QueryAssistantRequest": {
3356
3468
"type": "structure",
3357
3469
"required": [
@@ -4113,6 +4225,13 @@
4113
4225
"GENERATIVE_ANSWER"
4114
4226
]
4115
4227
},
4228
+
"Relevance": {
4229
+
"type": "string",
4230
+
"enum": [
4231
+
"HELPFUL",
4232
+
"NOT_HELPFUL"
4233
+
]
4234
+
},
4116
4235
"RelevanceLevel": {
4117
4236
"type": "string",
4118
4237
"enum": [
@@ -4634,6 +4753,13 @@
4634
4753
"shape": "TagValue"
4635
4754
}
4636
4755
},
4756
+
"TargetType": {
4757
+
"type": "string",
4758
+
"enum": [
4759
+
"RECOMMENDATION",
4760
+
"RESULT"
4761
+
]
4762
+
},
4637
4763
"TextData": {
4638
4764
"type": "structure",
4639
4765
"members": {
@@ -4868,5 +4994,5 @@
4868
4994
"min": 0
4869
4995
}
4870
4996
},
4871
-
"documentation": "<p>Amazon Q in Connect is a generative AI customer service assistant. It is an LLM-enhanced evolution of Amazon Connect Wisdom that delivers real-time recommendations to help contact center agents resolve customer issues quickly and accurately.</p> <p>Amazon Q automatically detects customer intent during calls and chats using conversational analytics and natural language understanding (NLU). It then provides agents with immediate, real-time generative responses and suggested actions, and links to relevant documents and articles. Agents can also query Amazon Q directly using natural language or keywords to answer customer requests.</p> <p>Use the Amazon Q in Connect APIs to create an assistant and a knowledge base, for example, or manage content by uploading custom files.</p> <p>For more information, see <a href=\"https://docs.aws.amazon.com/connect/latest/adminguide/amazon-q-connect.html\">Use Amazon Q in Connect for generative AI powered agent assistance in real-time</a> in the <i>Amazon Connect Administrator Guide</i>.</p>"
4997
+
"documentation": "<note> <p> <b>Powered by Amazon Bedrock</b>: Amazon Web Services implements <a href=\"https://docs.aws.amazon.com/bedrock/latest/userguide/abuse-detection.html\">automated abuse detection</a>. Because Amazon Q in Connect is built on Amazon Bedrock, users can take full advantage of the controls implemented in Amazon Bedrock to enforce safety, security, and the responsible use of artificial intelligence (AI).</p> </note> <p>Amazon Q in Connect is a generative AI customer service assistant. It is an LLM-enhanced evolution of Amazon Connect Wisdom that delivers real-time recommendations to help contact center agents resolve customer issues quickly and accurately.</p> <p>Amazon Q automatically detects customer intent during calls and chats using conversational analytics and natural language understanding (NLU). It then provides agents with immediate, real-time generative responses and suggested actions, and links to relevant documents and articles. Agents can also query Amazon Q directly using natural language or keywords to answer customer requests.</p> <p>Use the Amazon Q in Connect APIs to create an assistant and a knowledge base, for example, or manage content by uploading custom files.</p> <p>For more information, see <a href=\"https://docs.aws.amazon.com/connect/latest/adminguide/amazon-q-connect.html\">Use Amazon Q in Connect for generative AI powered agent assistance in real-time</a> in the <i>Amazon Connect Administrator Guide</i>.</p>"
0 commit comments