aws-sdk 2.962.0 → 2.966.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.
Files changed (48) hide show
  1. package/CHANGELOG.md +19 -1
  2. package/README.md +1 -1
  3. package/apis/chime-sdk-identity-2021-04-20.examples.json +5 -0
  4. package/apis/chime-sdk-identity-2021-04-20.min.json +644 -0
  5. package/apis/chime-sdk-identity-2021-04-20.paginators.json +19 -0
  6. package/apis/chime-sdk-messaging-2021-05-15.examples.json +5 -0
  7. package/apis/chime-sdk-messaging-2021-05-15.min.json +1413 -0
  8. package/apis/chime-sdk-messaging-2021-05-15.paginators.json +39 -0
  9. package/apis/codebuild-2016-10-06.examples.json +0 -276
  10. package/apis/codebuild-2016-10-06.min.json +51 -26
  11. package/apis/connect-2017-08-08.min.json +364 -101
  12. package/apis/connect-2017-08-08.paginators.json +6 -0
  13. package/apis/lightsail-2016-11-28.min.json +154 -144
  14. package/apis/metadata.json +12 -0
  15. package/apis/nimble-2020-08-01.min.json +13 -0
  16. package/apis/rekognition-2016-06-27.min.json +51 -30
  17. package/apis/snow-device-management-2021-08-04.examples.json +5 -0
  18. package/apis/snow-device-management-2021-08-04.min.json +638 -0
  19. package/apis/snow-device-management-2021-08-04.paginators.json +28 -0
  20. package/apis/wafv2-2019-07-29.min.json +306 -98
  21. package/clients/all.d.ts +3 -0
  22. package/clients/all.js +4 -1
  23. package/clients/athena.d.ts +28 -28
  24. package/clients/chime.d.ts +17 -14
  25. package/clients/chimesdkidentity.d.ts +591 -0
  26. package/clients/chimesdkidentity.js +18 -0
  27. package/clients/chimesdkmessaging.d.ts +1344 -0
  28. package/clients/chimesdkmessaging.js +18 -0
  29. package/clients/codebuild.d.ts +166 -126
  30. package/clients/connect.d.ts +310 -9
  31. package/clients/ebs.d.ts +10 -10
  32. package/clients/ecs.d.ts +18 -18
  33. package/clients/lightsail.d.ts +19 -1
  34. package/clients/nimble.d.ts +31 -15
  35. package/clients/rekognition.d.ts +59 -26
  36. package/clients/route53.d.ts +57 -57
  37. package/clients/snowdevicemanagement.d.ts +767 -0
  38. package/clients/snowdevicemanagement.js +18 -0
  39. package/clients/ssm.d.ts +110 -110
  40. package/clients/synthetics.d.ts +25 -1
  41. package/clients/wafv2.d.ts +325 -6
  42. package/dist/aws-sdk-core-react-native.js +2 -2
  43. package/dist/aws-sdk-react-native.js +122 -11
  44. package/dist/aws-sdk.js +487 -160
  45. package/dist/aws-sdk.min.js +76 -76
  46. package/lib/config_service_placeholders.d.ts +6 -0
  47. package/lib/core.js +1 -1
  48. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,7 +1,25 @@
1
1
  # Changelog for AWS SDK for JavaScript
2
- <!--LATEST=2.962.0-->
2
+ <!--LATEST=2.966.0-->
3
3
  <!--ENTRYINSERT-->
4
4
 
5
+ ## 2.966.0
6
+ * feature: CodeBuild: CodeBuild now allows you to make the build results for your build projects available to the public without requiring access to an AWS account.
7
+ * feature: Nimble: Add new attribute 'ownedBy' in Streaming Session APIs. 'ownedBy' represents the AWS SSO Identity Store User ID of the owner of the Streaming Session resource.
8
+ * feature: SnowDeviceManagement: AWS Snow Family customers can remotely monitor and operate their connected AWS Snowcone devices.
9
+
10
+ ## 2.965.0
11
+ * feature: Chime: Add support for "auto" in Region field of StartMeetingTranscription API request.
12
+
13
+ ## 2.964.0
14
+ * feature: Rekognition: This release adds support for four new types of segments (opening credits, content segments, slates, and studio logos), improved accuracy for credits and shot detection and new filters to control black frame detection.
15
+ * feature: WAFV2: This release adds APIs to support versioning feature of AWS WAF Managed rule groups
16
+
17
+ ## 2.963.0
18
+ * feature: ChimeSDKIdentity: The Amazon Chime SDK Identity APIs allow software developers to create and manage unique instances of their messaging applications.
19
+ * feature: ChimeSDKMessaging: The Amazon Chime SDK Messaging APIs allow software developers to send and receive messages in custom messaging applications.
20
+ * feature: Connect: This release adds support for agent status and hours of operation. For details, see the Release Notes in the Amazon Connect Administrator Guide.
21
+ * feature: Lightsail: This release adds support to track when a bucket access key was last used.
22
+
5
23
  ## 2.962.0
6
24
  * feature: AutoScaling: EC2 Auto Scaling adds configuration checks and Launch Template validation to Instance Refresh.
7
25
  * feature: LexModelsV2: Customers can now toggle the active field on prompts and responses.
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.962.0.min.js"></script>
32
+ <script src="https://sdk.amazonaws.com/js/aws-sdk-2.966.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
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,644 @@
1
+ {
2
+ "version": "2.0",
3
+ "metadata": {
4
+ "apiVersion": "2021-04-20",
5
+ "endpointPrefix": "identity-chime",
6
+ "protocol": "rest-json",
7
+ "serviceFullName": "Amazon Chime SDK Identity",
8
+ "serviceId": "Chime SDK Identity",
9
+ "signatureVersion": "v4",
10
+ "signingName": "chime",
11
+ "uid": "chime-sdk-identity-2021-04-20"
12
+ },
13
+ "operations": {
14
+ "CreateAppInstance": {
15
+ "http": {
16
+ "requestUri": "/app-instances",
17
+ "responseCode": 201
18
+ },
19
+ "input": {
20
+ "type": "structure",
21
+ "required": [
22
+ "Name",
23
+ "ClientRequestToken"
24
+ ],
25
+ "members": {
26
+ "Name": {
27
+ "shape": "S2"
28
+ },
29
+ "Metadata": {
30
+ "shape": "S3"
31
+ },
32
+ "ClientRequestToken": {
33
+ "shape": "S4",
34
+ "idempotencyToken": true
35
+ },
36
+ "Tags": {
37
+ "shape": "S5"
38
+ }
39
+ }
40
+ },
41
+ "output": {
42
+ "type": "structure",
43
+ "members": {
44
+ "AppInstanceArn": {}
45
+ }
46
+ }
47
+ },
48
+ "CreateAppInstanceAdmin": {
49
+ "http": {
50
+ "requestUri": "/app-instances/{appInstanceArn}/admins",
51
+ "responseCode": 201
52
+ },
53
+ "input": {
54
+ "type": "structure",
55
+ "required": [
56
+ "AppInstanceAdminArn",
57
+ "AppInstanceArn"
58
+ ],
59
+ "members": {
60
+ "AppInstanceAdminArn": {},
61
+ "AppInstanceArn": {
62
+ "location": "uri",
63
+ "locationName": "appInstanceArn"
64
+ }
65
+ }
66
+ },
67
+ "output": {
68
+ "type": "structure",
69
+ "members": {
70
+ "AppInstanceAdmin": {
71
+ "shape": "Sd"
72
+ },
73
+ "AppInstanceArn": {}
74
+ }
75
+ }
76
+ },
77
+ "CreateAppInstanceUser": {
78
+ "http": {
79
+ "requestUri": "/app-instance-users",
80
+ "responseCode": 201
81
+ },
82
+ "input": {
83
+ "type": "structure",
84
+ "required": [
85
+ "AppInstanceArn",
86
+ "AppInstanceUserId",
87
+ "Name",
88
+ "ClientRequestToken"
89
+ ],
90
+ "members": {
91
+ "AppInstanceArn": {},
92
+ "AppInstanceUserId": {
93
+ "type": "string",
94
+ "sensitive": true
95
+ },
96
+ "Name": {
97
+ "shape": "Sh"
98
+ },
99
+ "Metadata": {
100
+ "shape": "S3"
101
+ },
102
+ "ClientRequestToken": {
103
+ "shape": "S4",
104
+ "idempotencyToken": true
105
+ },
106
+ "Tags": {
107
+ "shape": "S5"
108
+ }
109
+ }
110
+ },
111
+ "output": {
112
+ "type": "structure",
113
+ "members": {
114
+ "AppInstanceUserArn": {}
115
+ }
116
+ }
117
+ },
118
+ "DeleteAppInstance": {
119
+ "http": {
120
+ "method": "DELETE",
121
+ "requestUri": "/app-instances/{appInstanceArn}",
122
+ "responseCode": 204
123
+ },
124
+ "input": {
125
+ "type": "structure",
126
+ "required": [
127
+ "AppInstanceArn"
128
+ ],
129
+ "members": {
130
+ "AppInstanceArn": {
131
+ "location": "uri",
132
+ "locationName": "appInstanceArn"
133
+ }
134
+ }
135
+ }
136
+ },
137
+ "DeleteAppInstanceAdmin": {
138
+ "http": {
139
+ "method": "DELETE",
140
+ "requestUri": "/app-instances/{appInstanceArn}/admins/{appInstanceAdminArn}",
141
+ "responseCode": 204
142
+ },
143
+ "input": {
144
+ "type": "structure",
145
+ "required": [
146
+ "AppInstanceAdminArn",
147
+ "AppInstanceArn"
148
+ ],
149
+ "members": {
150
+ "AppInstanceAdminArn": {
151
+ "location": "uri",
152
+ "locationName": "appInstanceAdminArn"
153
+ },
154
+ "AppInstanceArn": {
155
+ "location": "uri",
156
+ "locationName": "appInstanceArn"
157
+ }
158
+ }
159
+ }
160
+ },
161
+ "DeleteAppInstanceUser": {
162
+ "http": {
163
+ "method": "DELETE",
164
+ "requestUri": "/app-instance-users/{appInstanceUserArn}",
165
+ "responseCode": 204
166
+ },
167
+ "input": {
168
+ "type": "structure",
169
+ "required": [
170
+ "AppInstanceUserArn"
171
+ ],
172
+ "members": {
173
+ "AppInstanceUserArn": {
174
+ "location": "uri",
175
+ "locationName": "appInstanceUserArn"
176
+ }
177
+ }
178
+ }
179
+ },
180
+ "DescribeAppInstance": {
181
+ "http": {
182
+ "method": "GET",
183
+ "requestUri": "/app-instances/{appInstanceArn}"
184
+ },
185
+ "input": {
186
+ "type": "structure",
187
+ "required": [
188
+ "AppInstanceArn"
189
+ ],
190
+ "members": {
191
+ "AppInstanceArn": {
192
+ "location": "uri",
193
+ "locationName": "appInstanceArn"
194
+ }
195
+ }
196
+ },
197
+ "output": {
198
+ "type": "structure",
199
+ "members": {
200
+ "AppInstance": {
201
+ "type": "structure",
202
+ "members": {
203
+ "AppInstanceArn": {},
204
+ "Name": {
205
+ "shape": "S2"
206
+ },
207
+ "CreatedTimestamp": {
208
+ "type": "timestamp"
209
+ },
210
+ "LastUpdatedTimestamp": {
211
+ "type": "timestamp"
212
+ },
213
+ "Metadata": {
214
+ "shape": "S3"
215
+ }
216
+ }
217
+ }
218
+ }
219
+ }
220
+ },
221
+ "DescribeAppInstanceAdmin": {
222
+ "http": {
223
+ "method": "GET",
224
+ "requestUri": "/app-instances/{appInstanceArn}/admins/{appInstanceAdminArn}",
225
+ "responseCode": 200
226
+ },
227
+ "input": {
228
+ "type": "structure",
229
+ "required": [
230
+ "AppInstanceAdminArn",
231
+ "AppInstanceArn"
232
+ ],
233
+ "members": {
234
+ "AppInstanceAdminArn": {
235
+ "location": "uri",
236
+ "locationName": "appInstanceAdminArn"
237
+ },
238
+ "AppInstanceArn": {
239
+ "location": "uri",
240
+ "locationName": "appInstanceArn"
241
+ }
242
+ }
243
+ },
244
+ "output": {
245
+ "type": "structure",
246
+ "members": {
247
+ "AppInstanceAdmin": {
248
+ "type": "structure",
249
+ "members": {
250
+ "Admin": {
251
+ "shape": "Sd"
252
+ },
253
+ "AppInstanceArn": {},
254
+ "CreatedTimestamp": {
255
+ "type": "timestamp"
256
+ }
257
+ }
258
+ }
259
+ }
260
+ }
261
+ },
262
+ "DescribeAppInstanceUser": {
263
+ "http": {
264
+ "method": "GET",
265
+ "requestUri": "/app-instance-users/{appInstanceUserArn}"
266
+ },
267
+ "input": {
268
+ "type": "structure",
269
+ "required": [
270
+ "AppInstanceUserArn"
271
+ ],
272
+ "members": {
273
+ "AppInstanceUserArn": {
274
+ "location": "uri",
275
+ "locationName": "appInstanceUserArn"
276
+ }
277
+ }
278
+ },
279
+ "output": {
280
+ "type": "structure",
281
+ "members": {
282
+ "AppInstanceUser": {
283
+ "type": "structure",
284
+ "members": {
285
+ "AppInstanceUserArn": {},
286
+ "Name": {
287
+ "shape": "Sh"
288
+ },
289
+ "Metadata": {
290
+ "shape": "S3"
291
+ },
292
+ "CreatedTimestamp": {
293
+ "type": "timestamp"
294
+ },
295
+ "LastUpdatedTimestamp": {
296
+ "type": "timestamp"
297
+ }
298
+ }
299
+ }
300
+ }
301
+ }
302
+ },
303
+ "GetAppInstanceRetentionSettings": {
304
+ "http": {
305
+ "method": "GET",
306
+ "requestUri": "/app-instances/{appInstanceArn}/retention-settings",
307
+ "responseCode": 200
308
+ },
309
+ "input": {
310
+ "type": "structure",
311
+ "required": [
312
+ "AppInstanceArn"
313
+ ],
314
+ "members": {
315
+ "AppInstanceArn": {
316
+ "location": "uri",
317
+ "locationName": "appInstanceArn"
318
+ }
319
+ }
320
+ },
321
+ "output": {
322
+ "type": "structure",
323
+ "members": {
324
+ "AppInstanceRetentionSettings": {
325
+ "shape": "Sy"
326
+ },
327
+ "InitiateDeletionTimestamp": {
328
+ "type": "timestamp"
329
+ }
330
+ }
331
+ }
332
+ },
333
+ "ListAppInstanceAdmins": {
334
+ "http": {
335
+ "method": "GET",
336
+ "requestUri": "/app-instances/{appInstanceArn}/admins",
337
+ "responseCode": 200
338
+ },
339
+ "input": {
340
+ "type": "structure",
341
+ "required": [
342
+ "AppInstanceArn"
343
+ ],
344
+ "members": {
345
+ "AppInstanceArn": {
346
+ "location": "uri",
347
+ "locationName": "appInstanceArn"
348
+ },
349
+ "MaxResults": {
350
+ "location": "querystring",
351
+ "locationName": "max-results",
352
+ "type": "integer"
353
+ },
354
+ "NextToken": {
355
+ "shape": "S13",
356
+ "location": "querystring",
357
+ "locationName": "next-token"
358
+ }
359
+ }
360
+ },
361
+ "output": {
362
+ "type": "structure",
363
+ "members": {
364
+ "AppInstanceArn": {},
365
+ "AppInstanceAdmins": {
366
+ "type": "list",
367
+ "member": {
368
+ "type": "structure",
369
+ "members": {
370
+ "Admin": {
371
+ "shape": "Sd"
372
+ }
373
+ }
374
+ }
375
+ },
376
+ "NextToken": {
377
+ "shape": "S13"
378
+ }
379
+ }
380
+ }
381
+ },
382
+ "ListAppInstanceUsers": {
383
+ "http": {
384
+ "method": "GET",
385
+ "requestUri": "/app-instance-users"
386
+ },
387
+ "input": {
388
+ "type": "structure",
389
+ "required": [
390
+ "AppInstanceArn"
391
+ ],
392
+ "members": {
393
+ "AppInstanceArn": {
394
+ "location": "querystring",
395
+ "locationName": "app-instance-arn"
396
+ },
397
+ "MaxResults": {
398
+ "location": "querystring",
399
+ "locationName": "max-results",
400
+ "type": "integer"
401
+ },
402
+ "NextToken": {
403
+ "shape": "S13",
404
+ "location": "querystring",
405
+ "locationName": "next-token"
406
+ }
407
+ }
408
+ },
409
+ "output": {
410
+ "type": "structure",
411
+ "members": {
412
+ "AppInstanceArn": {},
413
+ "AppInstanceUsers": {
414
+ "type": "list",
415
+ "member": {
416
+ "type": "structure",
417
+ "members": {
418
+ "AppInstanceUserArn": {},
419
+ "Name": {
420
+ "shape": "Sh"
421
+ },
422
+ "Metadata": {
423
+ "shape": "S3"
424
+ }
425
+ }
426
+ }
427
+ },
428
+ "NextToken": {
429
+ "shape": "S13"
430
+ }
431
+ }
432
+ }
433
+ },
434
+ "ListAppInstances": {
435
+ "http": {
436
+ "method": "GET",
437
+ "requestUri": "/app-instances"
438
+ },
439
+ "input": {
440
+ "type": "structure",
441
+ "members": {
442
+ "MaxResults": {
443
+ "location": "querystring",
444
+ "locationName": "max-results",
445
+ "type": "integer"
446
+ },
447
+ "NextToken": {
448
+ "shape": "S13",
449
+ "location": "querystring",
450
+ "locationName": "next-token"
451
+ }
452
+ }
453
+ },
454
+ "output": {
455
+ "type": "structure",
456
+ "members": {
457
+ "AppInstances": {
458
+ "type": "list",
459
+ "member": {
460
+ "type": "structure",
461
+ "members": {
462
+ "AppInstanceArn": {},
463
+ "Name": {
464
+ "shape": "S2"
465
+ },
466
+ "Metadata": {
467
+ "shape": "S3"
468
+ }
469
+ }
470
+ }
471
+ },
472
+ "NextToken": {
473
+ "shape": "S13"
474
+ }
475
+ }
476
+ }
477
+ },
478
+ "PutAppInstanceRetentionSettings": {
479
+ "http": {
480
+ "method": "PUT",
481
+ "requestUri": "/app-instances/{appInstanceArn}/retention-settings",
482
+ "responseCode": 200
483
+ },
484
+ "input": {
485
+ "type": "structure",
486
+ "required": [
487
+ "AppInstanceArn",
488
+ "AppInstanceRetentionSettings"
489
+ ],
490
+ "members": {
491
+ "AppInstanceArn": {
492
+ "location": "uri",
493
+ "locationName": "appInstanceArn"
494
+ },
495
+ "AppInstanceRetentionSettings": {
496
+ "shape": "Sy"
497
+ }
498
+ }
499
+ },
500
+ "output": {
501
+ "type": "structure",
502
+ "members": {
503
+ "AppInstanceRetentionSettings": {
504
+ "shape": "Sy"
505
+ },
506
+ "InitiateDeletionTimestamp": {
507
+ "type": "timestamp"
508
+ }
509
+ }
510
+ }
511
+ },
512
+ "UpdateAppInstance": {
513
+ "http": {
514
+ "method": "PUT",
515
+ "requestUri": "/app-instances/{appInstanceArn}",
516
+ "responseCode": 200
517
+ },
518
+ "input": {
519
+ "type": "structure",
520
+ "required": [
521
+ "AppInstanceArn",
522
+ "Name",
523
+ "Metadata"
524
+ ],
525
+ "members": {
526
+ "AppInstanceArn": {
527
+ "location": "uri",
528
+ "locationName": "appInstanceArn"
529
+ },
530
+ "Name": {
531
+ "shape": "S2"
532
+ },
533
+ "Metadata": {
534
+ "shape": "S3"
535
+ }
536
+ }
537
+ },
538
+ "output": {
539
+ "type": "structure",
540
+ "members": {
541
+ "AppInstanceArn": {}
542
+ }
543
+ }
544
+ },
545
+ "UpdateAppInstanceUser": {
546
+ "http": {
547
+ "method": "PUT",
548
+ "requestUri": "/app-instance-users/{appInstanceUserArn}",
549
+ "responseCode": 200
550
+ },
551
+ "input": {
552
+ "type": "structure",
553
+ "required": [
554
+ "AppInstanceUserArn",
555
+ "Name",
556
+ "Metadata"
557
+ ],
558
+ "members": {
559
+ "AppInstanceUserArn": {
560
+ "location": "uri",
561
+ "locationName": "appInstanceUserArn"
562
+ },
563
+ "Name": {
564
+ "shape": "Sh"
565
+ },
566
+ "Metadata": {
567
+ "shape": "S3"
568
+ }
569
+ }
570
+ },
571
+ "output": {
572
+ "type": "structure",
573
+ "members": {
574
+ "AppInstanceUserArn": {}
575
+ }
576
+ }
577
+ }
578
+ },
579
+ "shapes": {
580
+ "S2": {
581
+ "type": "string",
582
+ "sensitive": true
583
+ },
584
+ "S3": {
585
+ "type": "string",
586
+ "sensitive": true
587
+ },
588
+ "S4": {
589
+ "type": "string",
590
+ "sensitive": true
591
+ },
592
+ "S5": {
593
+ "type": "list",
594
+ "member": {
595
+ "type": "structure",
596
+ "required": [
597
+ "Key",
598
+ "Value"
599
+ ],
600
+ "members": {
601
+ "Key": {
602
+ "type": "string",
603
+ "sensitive": true
604
+ },
605
+ "Value": {
606
+ "type": "string",
607
+ "sensitive": true
608
+ }
609
+ }
610
+ }
611
+ },
612
+ "Sd": {
613
+ "type": "structure",
614
+ "members": {
615
+ "Arn": {},
616
+ "Name": {
617
+ "type": "string",
618
+ "sensitive": true
619
+ }
620
+ }
621
+ },
622
+ "Sh": {
623
+ "type": "string",
624
+ "sensitive": true
625
+ },
626
+ "Sy": {
627
+ "type": "structure",
628
+ "members": {
629
+ "ChannelRetentionSettings": {
630
+ "type": "structure",
631
+ "members": {
632
+ "RetentionDays": {
633
+ "type": "integer"
634
+ }
635
+ }
636
+ }
637
+ }
638
+ },
639
+ "S13": {
640
+ "type": "string",
641
+ "sensitive": true
642
+ }
643
+ }
644
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "pagination": {
3
+ "ListAppInstanceAdmins": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxResults"
7
+ },
8
+ "ListAppInstanceUsers": {
9
+ "input_token": "NextToken",
10
+ "output_token": "NextToken",
11
+ "limit_key": "MaxResults"
12
+ },
13
+ "ListAppInstances": {
14
+ "input_token": "NextToken",
15
+ "output_token": "NextToken",
16
+ "limit_key": "MaxResults"
17
+ }
18
+ }
19
+ }