aws-sdk 2.995.0 → 2.996.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,7 +1,15 @@
1
1
  # Changelog for AWS SDK for JavaScript
2
- <!--LATEST=2.995.0-->
2
+ <!--LATEST=2.996.0-->
3
3
  <!--ENTRYINSERT-->
4
4
 
5
+ ## 2.996.0
6
+ * feature: AppIntegrations: The Amazon AppIntegrations service enables you to configure and reuse connections to external applications.
7
+ * feature: Connect: This release updates a set of APIs: CreateIntegrationAssociation, ListIntegrationAssociations, CreateUseCase, and StartOutboundVoiceContact. You can use it to create integrations with Amazon Pinpoint for the Amazon Connect Campaigns use case, Amazon Connect Voice ID, and Amazon Connect Wisdom.
8
+ * feature: ELBv2: Adds new ALB-type target group to facilitate forwarding traffic from NLB to ALB
9
+ * feature: Pinpoint: Added support for journey with contact center activity
10
+ * feature: VoiceID: Released the Amazon Voice ID SDK, for usage with the Amazon Connect Voice ID feature released for Amazon Connect.
11
+ * feature: Wisdom: Released Amazon Connect Wisdom, a feature of Amazon Connect, which provides real-time recommendations and search functionality in general availability (GA). For more information, see https://docs.aws.amazon.com/wisdom/latest/APIReference/Welcome.html.
12
+
5
13
  ## 2.995.0
6
14
  * feature: EC2: DescribeInstances now returns Platform Details, Usage Operation, and Usage Operation Update Time.
7
15
  * feature: LicenseManager: AWS License Manager now allows customers to get the LicenseArn in the Checkout API Response.
package/README.md CHANGED
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
29
29
  To use the SDK in the browser, simply add the following script tag to your
30
30
  HTML pages:
31
31
 
32
- <script src="https://sdk.amazonaws.com/js/aws-sdk-2.995.0.min.js"></script>
32
+ <script src="https://sdk.amazonaws.com/js/aws-sdk-2.996.0.min.js"></script>
33
33
 
34
34
  You can also build a custom browser SDK with your specified set of AWS services.
35
35
  This can allow you to reduce the SDK's size, specify different API versions of
@@ -12,6 +12,50 @@
12
12
  "uid": "appintegrations-2020-07-29"
13
13
  },
14
14
  "operations": {
15
+ "CreateDataIntegration": {
16
+ "http": {
17
+ "requestUri": "/dataIntegrations"
18
+ },
19
+ "input": {
20
+ "type": "structure",
21
+ "required": [
22
+ "Name"
23
+ ],
24
+ "members": {
25
+ "Name": {},
26
+ "Description": {},
27
+ "KmsKey": {},
28
+ "SourceURI": {},
29
+ "ScheduleConfig": {
30
+ "shape": "S5"
31
+ },
32
+ "Tags": {
33
+ "shape": "S8"
34
+ },
35
+ "ClientToken": {
36
+ "idempotencyToken": true
37
+ }
38
+ }
39
+ },
40
+ "output": {
41
+ "type": "structure",
42
+ "members": {
43
+ "Arn": {},
44
+ "Id": {},
45
+ "Name": {},
46
+ "Description": {},
47
+ "KmsKey": {},
48
+ "SourceURI": {},
49
+ "ScheduleConfiguration": {
50
+ "shape": "S5"
51
+ },
52
+ "Tags": {
53
+ "shape": "S8"
54
+ },
55
+ "ClientToken": {}
56
+ }
57
+ }
58
+ },
15
59
  "CreateEventIntegration": {
16
60
  "http": {
17
61
  "requestUri": "/eventIntegrations"
@@ -27,7 +71,7 @@
27
71
  "Name": {},
28
72
  "Description": {},
29
73
  "EventFilter": {
30
- "shape": "S4"
74
+ "shape": "Sg"
31
75
  },
32
76
  "EventBridgeBus": {},
33
77
  "ClientToken": {
@@ -45,6 +89,28 @@
45
89
  }
46
90
  }
47
91
  },
92
+ "DeleteDataIntegration": {
93
+ "http": {
94
+ "method": "DELETE",
95
+ "requestUri": "/dataIntegrations/{Identifier}"
96
+ },
97
+ "input": {
98
+ "type": "structure",
99
+ "required": [
100
+ "DataIntegrationIdentifier"
101
+ ],
102
+ "members": {
103
+ "DataIntegrationIdentifier": {
104
+ "location": "uri",
105
+ "locationName": "Identifier"
106
+ }
107
+ }
108
+ },
109
+ "output": {
110
+ "type": "structure",
111
+ "members": {}
112
+ }
113
+ },
48
114
  "DeleteEventIntegration": {
49
115
  "http": {
50
116
  "method": "DELETE",
@@ -67,6 +133,41 @@
67
133
  "members": {}
68
134
  }
69
135
  },
136
+ "GetDataIntegration": {
137
+ "http": {
138
+ "method": "GET",
139
+ "requestUri": "/dataIntegrations/{Identifier}"
140
+ },
141
+ "input": {
142
+ "type": "structure",
143
+ "required": [
144
+ "Identifier"
145
+ ],
146
+ "members": {
147
+ "Identifier": {
148
+ "location": "uri",
149
+ "locationName": "Identifier"
150
+ }
151
+ }
152
+ },
153
+ "output": {
154
+ "type": "structure",
155
+ "members": {
156
+ "Arn": {},
157
+ "Id": {},
158
+ "Name": {},
159
+ "Description": {},
160
+ "KmsKey": {},
161
+ "SourceURI": {},
162
+ "ScheduleConfiguration": {
163
+ "shape": "S5"
164
+ },
165
+ "Tags": {
166
+ "shape": "S8"
167
+ }
168
+ }
169
+ }
170
+ },
70
171
  "GetEventIntegration": {
71
172
  "http": {
72
173
  "method": "GET",
@@ -92,7 +193,7 @@
92
193
  "EventIntegrationArn": {},
93
194
  "EventBridgeBus": {},
94
195
  "EventFilter": {
95
- "shape": "S4"
196
+ "shape": "Sg"
96
197
  },
97
198
  "Tags": {
98
199
  "shape": "S8"
@@ -100,6 +201,87 @@
100
201
  }
101
202
  }
102
203
  },
204
+ "ListDataIntegrationAssociations": {
205
+ "http": {
206
+ "method": "GET",
207
+ "requestUri": "/dataIntegrations/{Identifier}/associations"
208
+ },
209
+ "input": {
210
+ "type": "structure",
211
+ "required": [
212
+ "DataIntegrationIdentifier"
213
+ ],
214
+ "members": {
215
+ "DataIntegrationIdentifier": {
216
+ "location": "uri",
217
+ "locationName": "Identifier"
218
+ },
219
+ "NextToken": {
220
+ "location": "querystring",
221
+ "locationName": "nextToken"
222
+ },
223
+ "MaxResults": {
224
+ "location": "querystring",
225
+ "locationName": "maxResults",
226
+ "type": "integer"
227
+ }
228
+ }
229
+ },
230
+ "output": {
231
+ "type": "structure",
232
+ "members": {
233
+ "DataIntegrationAssociations": {
234
+ "type": "list",
235
+ "member": {
236
+ "type": "structure",
237
+ "members": {
238
+ "DataIntegrationAssociationArn": {},
239
+ "DataIntegrationArn": {},
240
+ "ClientId": {}
241
+ }
242
+ }
243
+ },
244
+ "NextToken": {}
245
+ }
246
+ }
247
+ },
248
+ "ListDataIntegrations": {
249
+ "http": {
250
+ "method": "GET",
251
+ "requestUri": "/dataIntegrations"
252
+ },
253
+ "input": {
254
+ "type": "structure",
255
+ "members": {
256
+ "NextToken": {
257
+ "location": "querystring",
258
+ "locationName": "nextToken"
259
+ },
260
+ "MaxResults": {
261
+ "location": "querystring",
262
+ "locationName": "maxResults",
263
+ "type": "integer"
264
+ }
265
+ }
266
+ },
267
+ "output": {
268
+ "type": "structure",
269
+ "members": {
270
+ "DataIntegrations": {
271
+ "type": "list",
272
+ "member": {
273
+ "type": "structure",
274
+ "members": {
275
+ "Arn": {},
276
+ "Name": {},
277
+ "SourceURI": {}
278
+ }
279
+ }
280
+ },
281
+ "NextToken": {}
282
+ }
283
+ }
284
+ },
103
285
  "ListEventIntegrationAssociations": {
104
286
  "http": {
105
287
  "method": "GET",
@@ -182,7 +364,7 @@
182
364
  "Name": {},
183
365
  "Description": {},
184
366
  "EventFilter": {
185
- "shape": "S4"
367
+ "shape": "Sg"
186
368
  },
187
369
  "EventBridgeBus": {},
188
370
  "Tags": {
@@ -275,6 +457,30 @@
275
457
  "members": {}
276
458
  }
277
459
  },
460
+ "UpdateDataIntegration": {
461
+ "http": {
462
+ "method": "PATCH",
463
+ "requestUri": "/dataIntegrations/{Identifier}"
464
+ },
465
+ "input": {
466
+ "type": "structure",
467
+ "required": [
468
+ "Identifier"
469
+ ],
470
+ "members": {
471
+ "Identifier": {
472
+ "location": "uri",
473
+ "locationName": "Identifier"
474
+ },
475
+ "Name": {},
476
+ "Description": {}
477
+ }
478
+ },
479
+ "output": {
480
+ "type": "structure",
481
+ "members": {}
482
+ }
483
+ },
278
484
  "UpdateEventIntegration": {
279
485
  "http": {
280
486
  "method": "PATCH",
@@ -300,19 +506,27 @@
300
506
  }
301
507
  },
302
508
  "shapes": {
303
- "S4": {
509
+ "S5": {
304
510
  "type": "structure",
305
- "required": [
306
- "Source"
307
- ],
308
511
  "members": {
309
- "Source": {}
512
+ "FirstExecutionFrom": {},
513
+ "Object": {},
514
+ "ScheduleExpression": {}
310
515
  }
311
516
  },
312
517
  "S8": {
313
518
  "type": "map",
314
519
  "key": {},
315
520
  "value": {}
521
+ },
522
+ "Sg": {
523
+ "type": "structure",
524
+ "required": [
525
+ "Source"
526
+ ],
527
+ "members": {
528
+ "Source": {}
529
+ }
316
530
  }
317
531
  }
318
532
  }
@@ -360,10 +360,7 @@
360
360
  "required": [
361
361
  "InstanceId",
362
362
  "IntegrationType",
363
- "IntegrationArn",
364
- "SourceApplicationUrl",
365
- "SourceApplicationName",
366
- "SourceType"
363
+ "IntegrationArn"
367
364
  ],
368
365
  "members": {
369
366
  "InstanceId": {
@@ -2113,6 +2110,10 @@
2113
2110
  "location": "uri",
2114
2111
  "locationName": "InstanceId"
2115
2112
  },
2113
+ "IntegrationType": {
2114
+ "location": "querystring",
2115
+ "locationName": "integrationType"
2116
+ },
2116
2117
  "NextToken": {
2117
2118
  "location": "querystring",
2118
2119
  "locationName": "nextToken"
@@ -2941,7 +2942,20 @@
2941
2942
  "QueueId": {},
2942
2943
  "Attributes": {
2943
2944
  "shape": "S5o"
2944
- }
2945
+ },
2946
+ "AnswerMachineDetectionConfig": {
2947
+ "type": "structure",
2948
+ "members": {
2949
+ "EnableAnswerMachineDetection": {
2950
+ "type": "boolean"
2951
+ },
2952
+ "AwaitAnswerMachinePrompt": {
2953
+ "type": "boolean"
2954
+ }
2955
+ }
2956
+ },
2957
+ "CampaignId": {},
2958
+ "TrafficType": {}
2945
2959
  }
2946
2960
  },
2947
2961
  "output": {
@@ -3630,19 +3644,19 @@
3630
3644
  "type": "structure",
3631
3645
  "members": {
3632
3646
  "LevelOne": {
3633
- "shape": "Sbh"
3647
+ "shape": "Sbk"
3634
3648
  },
3635
3649
  "LevelTwo": {
3636
- "shape": "Sbh"
3650
+ "shape": "Sbk"
3637
3651
  },
3638
3652
  "LevelThree": {
3639
- "shape": "Sbh"
3653
+ "shape": "Sbk"
3640
3654
  },
3641
3655
  "LevelFour": {
3642
- "shape": "Sbh"
3656
+ "shape": "Sbk"
3643
3657
  },
3644
3658
  "LevelFive": {
3645
- "shape": "Sbh"
3659
+ "shape": "Sbk"
3646
3660
  }
3647
3661
  }
3648
3662
  },
@@ -4111,7 +4125,7 @@
4111
4125
  }
4112
4126
  }
4113
4127
  },
4114
- "Sbh": {
4128
+ "Sbk": {
4115
4129
  "type": "structure",
4116
4130
  "required": [
4117
4131
  "Name"
@@ -1074,5 +1074,12 @@
1074
1074
  },
1075
1075
  "kafkaconnect": {
1076
1076
  "name": "KafkaConnect"
1077
+ },
1078
+ "voiceid": {
1079
+ "prefix": "voice-id",
1080
+ "name": "VoiceID"
1081
+ },
1082
+ "wisdom": {
1083
+ "name": "Wisdom"
1077
1084
  }
1078
1085
  }