Skip to content

Commit 036818c

Browse files
author
awstools
committed
Updates SDK to v2.996.0
1 parent 65936b1 commit 036818c

36 files changed

+12060
-407
lines changed

.changes/2.996.0.json

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "AppIntegrations",
5+
"description": "The Amazon AppIntegrations service enables you to configure and reuse connections to external applications."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "Connect",
10+
"description": "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."
11+
},
12+
{
13+
"type": "feature",
14+
"category": "ELBv2",
15+
"description": "Adds new ALB-type target group to facilitate forwarding traffic from NLB to ALB"
16+
},
17+
{
18+
"type": "feature",
19+
"category": "Pinpoint",
20+
"description": "Added support for journey with contact center activity"
21+
},
22+
{
23+
"type": "feature",
24+
"category": "VoiceID",
25+
"description": "Released the Amazon Voice ID SDK, for usage with the Amazon Connect Voice ID feature released for Amazon Connect."
26+
},
27+
{
28+
"type": "feature",
29+
"category": "Wisdom",
30+
"description": "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."
31+
}
32+
]

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.995.0-->
2+
<!--LATEST=2.996.0-->
33
<!--ENTRYINSERT-->
44

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+
513
## 2.995.0
614
* feature: EC2: DescribeInstances now returns Platform Details, Usage Operation, and Usage Operation Update Time.
715
* feature: LicenseManager: AWS License Manager now allows customers to get the LicenseArn in the Checkout API Response.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
2929
To use the SDK in the browser, simply add the following script tag to your
3030
HTML pages:
3131

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>
3333

3434
You can also build a custom browser SDK with your specified set of AWS services.
3535
This can allow you to reduce the SDK's size, specify different API versions of

apis/appintegrations-2020-07-29.min.json

+222-8
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,50 @@
1212
"uid": "appintegrations-2020-07-29"
1313
},
1414
"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+
},
1559
"CreateEventIntegration": {
1660
"http": {
1761
"requestUri": "/eventIntegrations"
@@ -27,7 +71,7 @@
2771
"Name": {},
2872
"Description": {},
2973
"EventFilter": {
30-
"shape": "S4"
74+
"shape": "Sg"
3175
},
3276
"EventBridgeBus": {},
3377
"ClientToken": {
@@ -45,6 +89,28 @@
4589
}
4690
}
4791
},
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+
},
48114
"DeleteEventIntegration": {
49115
"http": {
50116
"method": "DELETE",
@@ -67,6 +133,41 @@
67133
"members": {}
68134
}
69135
},
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+
},
70171
"GetEventIntegration": {
71172
"http": {
72173
"method": "GET",
@@ -92,14 +193,95 @@
92193
"EventIntegrationArn": {},
93194
"EventBridgeBus": {},
94195
"EventFilter": {
95-
"shape": "S4"
196+
"shape": "Sg"
96197
},
97198
"Tags": {
98199
"shape": "S8"
99200
}
100201
}
101202
}
102203
},
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+
},
103285
"ListEventIntegrationAssociations": {
104286
"http": {
105287
"method": "GET",
@@ -182,7 +364,7 @@
182364
"Name": {},
183365
"Description": {},
184366
"EventFilter": {
185-
"shape": "S4"
367+
"shape": "Sg"
186368
},
187369
"EventBridgeBus": {},
188370
"Tags": {
@@ -275,6 +457,30 @@
275457
"members": {}
276458
}
277459
},
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+
},
278484
"UpdateEventIntegration": {
279485
"http": {
280486
"method": "PATCH",
@@ -300,19 +506,27 @@
300506
}
301507
},
302508
"shapes": {
303-
"S4": {
509+
"S5": {
304510
"type": "structure",
305-
"required": [
306-
"Source"
307-
],
308511
"members": {
309-
"Source": {}
512+
"FirstExecutionFrom": {},
513+
"Object": {},
514+
"ScheduleExpression": {}
310515
}
311516
},
312517
"S8": {
313518
"type": "map",
314519
"key": {},
315520
"value": {}
521+
},
522+
"Sg": {
523+
"type": "structure",
524+
"required": [
525+
"Source"
526+
],
527+
"members": {
528+
"Source": {}
529+
}
316530
}
317531
}
318532
}

0 commit comments

Comments
 (0)