aws-sdk 2.779.0 → 2.783.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 (42) hide show
  1. package/CHANGELOG.md +26 -1
  2. package/README.md +1 -1
  3. package/apis/apigateway-2015-07-09.min.json +6 -0
  4. package/apis/braket-2019-09-01.min.json +105 -7
  5. package/apis/codeartifact-2018-09-22.min.json +116 -19
  6. package/apis/dms-2016-01-01.min.json +103 -72
  7. package/apis/ec2-2016-11-15.min.json +1078 -936
  8. package/apis/elasticloadbalancingv2-2015-12-01.min.json +31 -31
  9. package/apis/glue-2017-03-31.min.json +136 -111
  10. package/apis/imagebuilder-2019-12-02.min.json +12 -12
  11. package/apis/iot-2015-05-28.min.json +296 -270
  12. package/apis/macie2-2020-01-01.min.json +4 -0
  13. package/apis/medialive-2017-10-14.min.json +207 -172
  14. package/apis/sesv2-2019-09-27.min.json +484 -81
  15. package/apis/sesv2-2019-09-27.paginators.json +10 -0
  16. package/apis/storagegateway-2013-06-30.min.json +78 -39
  17. package/clients/apigateway.d.ts +17 -9
  18. package/clients/braket.d.ts +100 -26
  19. package/clients/codeartifact.d.ts +95 -9
  20. package/clients/dms.d.ts +45 -1
  21. package/clients/ec2.d.ts +187 -2
  22. package/clients/elasticache.d.ts +22 -22
  23. package/clients/elbv2.d.ts +31 -17
  24. package/clients/glue.d.ts +86 -53
  25. package/clients/imagebuilder.d.ts +21 -20
  26. package/clients/iot.d.ts +33 -0
  27. package/clients/macie2.d.ts +4 -0
  28. package/clients/marketplacecommerceanalytics.d.ts +1 -1
  29. package/clients/medialive.d.ts +42 -0
  30. package/clients/sesv2.d.ts +435 -3
  31. package/clients/sns.d.ts +6 -6
  32. package/clients/storagegateway.d.ts +63 -4
  33. package/clients/workmail.d.ts +1 -1
  34. package/dist/aws-sdk-core-react-native.js +1 -1
  35. package/dist/aws-sdk-react-native.js +15 -15
  36. package/dist/aws-sdk.js +1492 -1279
  37. package/dist/aws-sdk.min.js +81 -81
  38. package/lib/core.js +1 -1
  39. package/lib/credentials/credential_provider_chain.d.ts +2 -2
  40. package/lib/error.d.ts +14 -10
  41. package/lib/service.d.ts +2 -2
  42. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,7 +1,32 @@
1
1
  # Changelog for AWS SDK for JavaScript
2
- <!--LATEST=2.779.0-->
2
+ <!--LATEST=2.783.0-->
3
3
  <!--ENTRYINSERT-->
4
4
 
5
+ ## 2.783.0
6
+ * bugfix: Types: Fix type of AWSError
7
+ * bugfix: Types: Update types for credential provider chain
8
+ * feature: Braket: This release supports tagging for Amazon Braket quantum-task resources. It also supports tag-based access control for quantum-task APIs.
9
+ * feature: DMS: Adding DocDbSettings to support DocumentDB as a source.
10
+ * feature: Imagebuilder: This feature increases the number of accounts that can be added to the Launch permissions within an Image Builder Distribution configuration.
11
+ * feature: Macie2: This release of the Amazon Macie API adds an eqExactMatch operator for filtering findings. With this operator you can increase the precision of your finding filters and suppression rules.
12
+ * feature: MediaLive: Support for HLS discontinuity tags in the child manifests. Support for incomplete segment behavior in the media output. Support for automatic input failover condition settings.
13
+
14
+ ## 2.782.0
15
+ * feature: APIGateway: Support disabling the default execute-api endpoint for REST APIs.
16
+ * feature: CodeArtifact: Add support for tagging of CodeArtifact domain and repository resources.
17
+ * feature: EC2: Support for Appliance mode on Transit Gateway that simplifies deployment of stateful network appliances. Added support for AWS Client VPN Self-Service Portal.
18
+ * feature: ELBv2: Application Load Balancer (ALB) now supports the gRPC protocol-version. With this release, customers can use ALB to route and load balance gRPC traffic between gRPC enabled clients and microservices.
19
+ * feature: SESV2: This release enables customers to manage their own contact lists and end-user subscription preferences.
20
+ * feature: StorageGateway: Adding support for access based enumeration on SMB file shares, file share visibility on SMB file shares, and file upload notifications for all file shares
21
+ * feature: TypeScript: Add AWS.Endpoint to ServiceConfigurationOptions.endpoint type.
22
+
23
+ ## 2.781.0
24
+ * feature: EC2: AWS Nitro Enclaves general availability. Added support to RunInstances for creating enclave-enabled EC2 instances. New APIs to associate an ACM certificate with an IAM role, for enclave consumption.
25
+ * feature: Iot: This release adds support for GG-Managed Job Namespace
26
+
27
+ ## 2.780.0
28
+ * feature: Glue: AWS Glue machine learning transforms now support encryption-at-rest for labels and trained models.
29
+
5
30
  ## 2.779.0
6
31
  * feature: Kendra: Amazon Kendra now supports indexing data from Confluence Server.
7
32
  * feature: Neptune: This feature enables custom endpoints for Amazon Neptune clusters. Custom endpoints simplify connection management when clusters contain instances with different capacities and configuration settings.
package/README.md CHANGED
@@ -25,7 +25,7 @@ version.
25
25
  To use the SDK in the browser, simply add the following script tag to your
26
26
  HTML pages:
27
27
 
28
- <script src="https://sdk.amazonaws.com/js/aws-sdk-2.779.0.min.js"></script>
28
+ <script src="https://sdk.amazonaws.com/js/aws-sdk-2.783.0.min.js"></script>
29
29
 
30
30
  You can also build a custom browser SDK with your specified set of AWS services.
31
31
  This can allow you to reduce the SDK's size, specify different API versions of
@@ -358,6 +358,9 @@
358
358
  "policy": {},
359
359
  "tags": {
360
360
  "shape": "S6"
361
+ },
362
+ "disableExecuteApiEndpoint": {
363
+ "type": "boolean"
361
364
  }
362
365
  }
363
366
  },
@@ -4101,6 +4104,9 @@
4101
4104
  "policy": {},
4102
4105
  "tags": {
4103
4106
  "shape": "S6"
4107
+ },
4108
+ "disableExecuteApiEndpoint": {
4109
+ "type": "boolean"
4104
4110
  }
4105
4111
  }
4106
4112
  },
@@ -77,6 +77,9 @@
77
77
  "outputS3KeyPrefix": {},
78
78
  "shots": {
79
79
  "type": "long"
80
+ },
81
+ "tags": {
82
+ "shape": "Sd"
80
83
  }
81
84
  }
82
85
  },
@@ -162,14 +165,14 @@
162
165
  ],
163
166
  "members": {
164
167
  "createdAt": {
165
- "shape": "Sl"
168
+ "shape": "Sm"
166
169
  },
167
170
  "deviceArn": {},
168
171
  "deviceParameters": {
169
172
  "jsonvalue": true
170
173
  },
171
174
  "endedAt": {
172
- "shape": "Sl"
175
+ "shape": "Sm"
173
176
  },
174
177
  "failureReason": {},
175
178
  "outputS3Bucket": {},
@@ -178,7 +181,37 @@
178
181
  "shots": {
179
182
  "type": "long"
180
183
  },
181
- "status": {}
184
+ "status": {},
185
+ "tags": {
186
+ "shape": "Sd"
187
+ }
188
+ }
189
+ }
190
+ },
191
+ "ListTagsForResource": {
192
+ "http": {
193
+ "method": "GET",
194
+ "requestUri": "/tags/{resourceArn}",
195
+ "responseCode": 200
196
+ },
197
+ "input": {
198
+ "type": "structure",
199
+ "required": [
200
+ "resourceArn"
201
+ ],
202
+ "members": {
203
+ "resourceArn": {
204
+ "location": "uri",
205
+ "locationName": "resourceArn"
206
+ }
207
+ }
208
+ },
209
+ "output": {
210
+ "type": "structure",
211
+ "members": {
212
+ "tags": {
213
+ "shape": "Sd"
214
+ }
182
215
  }
183
216
  }
184
217
  },
@@ -304,11 +337,11 @@
304
337
  ],
305
338
  "members": {
306
339
  "createdAt": {
307
- "shape": "Sl"
340
+ "shape": "Sm"
308
341
  },
309
342
  "deviceArn": {},
310
343
  "endedAt": {
311
- "shape": "Sl"
344
+ "shape": "Sm"
312
345
  },
313
346
  "outputS3Bucket": {},
314
347
  "outputS3Directory": {},
@@ -316,16 +349,81 @@
316
349
  "shots": {
317
350
  "type": "long"
318
351
  },
319
- "status": {}
352
+ "status": {},
353
+ "tags": {
354
+ "shape": "Sd"
355
+ }
320
356
  }
321
357
  }
322
358
  }
323
359
  }
324
360
  }
361
+ },
362
+ "TagResource": {
363
+ "http": {
364
+ "requestUri": "/tags/{resourceArn}",
365
+ "responseCode": 200
366
+ },
367
+ "input": {
368
+ "type": "structure",
369
+ "required": [
370
+ "resourceArn",
371
+ "tags"
372
+ ],
373
+ "members": {
374
+ "resourceArn": {
375
+ "location": "uri",
376
+ "locationName": "resourceArn"
377
+ },
378
+ "tags": {
379
+ "shape": "Sd"
380
+ }
381
+ }
382
+ },
383
+ "output": {
384
+ "type": "structure",
385
+ "members": {}
386
+ }
387
+ },
388
+ "UntagResource": {
389
+ "http": {
390
+ "method": "DELETE",
391
+ "requestUri": "/tags/{resourceArn}",
392
+ "responseCode": 200
393
+ },
394
+ "input": {
395
+ "type": "structure",
396
+ "required": [
397
+ "resourceArn",
398
+ "tagKeys"
399
+ ],
400
+ "members": {
401
+ "resourceArn": {
402
+ "location": "uri",
403
+ "locationName": "resourceArn"
404
+ },
405
+ "tagKeys": {
406
+ "location": "querystring",
407
+ "locationName": "tagKeys",
408
+ "type": "list",
409
+ "member": {}
410
+ }
411
+ }
412
+ },
413
+ "output": {
414
+ "type": "structure",
415
+ "members": {}
416
+ },
417
+ "idempotent": true
325
418
  }
326
419
  },
327
420
  "shapes": {
328
- "Sl": {
421
+ "Sd": {
422
+ "type": "map",
423
+ "key": {},
424
+ "value": {}
425
+ },
426
+ "Sm": {
329
427
  "type": "timestamp",
330
428
  "timestampFormat": "iso8601"
331
429
  }
@@ -133,14 +133,17 @@
133
133
  "location": "querystring",
134
134
  "locationName": "domain"
135
135
  },
136
- "encryptionKey": {}
136
+ "encryptionKey": {},
137
+ "tags": {
138
+ "shape": "Sy"
139
+ }
137
140
  }
138
141
  },
139
142
  "output": {
140
143
  "type": "structure",
141
144
  "members": {
142
145
  "domain": {
143
- "shape": "Sz"
146
+ "shape": "S13"
144
147
  }
145
148
  }
146
149
  }
@@ -170,7 +173,10 @@
170
173
  },
171
174
  "description": {},
172
175
  "upstreams": {
173
- "shape": "S15"
176
+ "shape": "S19"
177
+ },
178
+ "tags": {
179
+ "shape": "Sy"
174
180
  }
175
181
  }
176
182
  },
@@ -208,7 +214,7 @@
208
214
  "type": "structure",
209
215
  "members": {
210
216
  "domain": {
211
- "shape": "Sz"
217
+ "shape": "S13"
212
218
  }
213
219
  }
214
220
  }
@@ -242,7 +248,7 @@
242
248
  "type": "structure",
243
249
  "members": {
244
250
  "policy": {
245
- "shape": "S1d"
251
+ "shape": "S1h"
246
252
  }
247
253
  }
248
254
  }
@@ -372,7 +378,7 @@
372
378
  "type": "structure",
373
379
  "members": {
374
380
  "policy": {
375
- "shape": "S1d"
381
+ "shape": "S1h"
376
382
  }
377
383
  }
378
384
  }
@@ -402,7 +408,7 @@
402
408
  "type": "structure",
403
409
  "members": {
404
410
  "domain": {
405
- "shape": "Sz"
411
+ "shape": "S13"
406
412
  }
407
413
  }
408
414
  }
@@ -683,7 +689,7 @@
683
689
  "type": "structure",
684
690
  "members": {
685
691
  "policy": {
686
- "shape": "S1d"
692
+ "shape": "S1h"
687
693
  }
688
694
  }
689
695
  }
@@ -890,7 +896,7 @@
890
896
  "type": "structure",
891
897
  "members": {
892
898
  "policy": {
893
- "shape": "S1d"
899
+ "shape": "S1h"
894
900
  }
895
901
  }
896
902
  }
@@ -1260,7 +1266,7 @@
1260
1266
  "type": "structure",
1261
1267
  "members": {
1262
1268
  "repositories": {
1263
- "shape": "S3b"
1269
+ "shape": "S3f"
1264
1270
  },
1265
1271
  "nextToken": {}
1266
1272
  }
@@ -1307,12 +1313,37 @@
1307
1313
  "type": "structure",
1308
1314
  "members": {
1309
1315
  "repositories": {
1310
- "shape": "S3b"
1316
+ "shape": "S3f"
1311
1317
  },
1312
1318
  "nextToken": {}
1313
1319
  }
1314
1320
  }
1315
1321
  },
1322
+ "ListTagsForResource": {
1323
+ "http": {
1324
+ "requestUri": "/v1/tags"
1325
+ },
1326
+ "input": {
1327
+ "type": "structure",
1328
+ "required": [
1329
+ "resourceArn"
1330
+ ],
1331
+ "members": {
1332
+ "resourceArn": {
1333
+ "location": "querystring",
1334
+ "locationName": "resourceArn"
1335
+ }
1336
+ }
1337
+ },
1338
+ "output": {
1339
+ "type": "structure",
1340
+ "members": {
1341
+ "tags": {
1342
+ "shape": "Sy"
1343
+ }
1344
+ }
1345
+ }
1346
+ },
1316
1347
  "PutDomainPermissionsPolicy": {
1317
1348
  "http": {
1318
1349
  "method": "PUT",
@@ -1335,7 +1366,7 @@
1335
1366
  "type": "structure",
1336
1367
  "members": {
1337
1368
  "policy": {
1338
- "shape": "S1d"
1369
+ "shape": "S1h"
1339
1370
  }
1340
1371
  }
1341
1372
  }
@@ -1373,9 +1404,60 @@
1373
1404
  "type": "structure",
1374
1405
  "members": {
1375
1406
  "policy": {
1376
- "shape": "S1d"
1407
+ "shape": "S1h"
1408
+ }
1409
+ }
1410
+ }
1411
+ },
1412
+ "TagResource": {
1413
+ "http": {
1414
+ "requestUri": "/v1/tag"
1415
+ },
1416
+ "input": {
1417
+ "type": "structure",
1418
+ "required": [
1419
+ "resourceArn",
1420
+ "tags"
1421
+ ],
1422
+ "members": {
1423
+ "resourceArn": {
1424
+ "location": "querystring",
1425
+ "locationName": "resourceArn"
1426
+ },
1427
+ "tags": {
1428
+ "shape": "Sy"
1429
+ }
1430
+ }
1431
+ },
1432
+ "output": {
1433
+ "type": "structure",
1434
+ "members": {}
1435
+ }
1436
+ },
1437
+ "UntagResource": {
1438
+ "http": {
1439
+ "requestUri": "/v1/untag"
1440
+ },
1441
+ "input": {
1442
+ "type": "structure",
1443
+ "required": [
1444
+ "resourceArn",
1445
+ "tagKeys"
1446
+ ],
1447
+ "members": {
1448
+ "resourceArn": {
1449
+ "location": "querystring",
1450
+ "locationName": "resourceArn"
1451
+ },
1452
+ "tagKeys": {
1453
+ "type": "list",
1454
+ "member": {}
1377
1455
  }
1378
1456
  }
1457
+ },
1458
+ "output": {
1459
+ "type": "structure",
1460
+ "members": {}
1379
1461
  }
1380
1462
  },
1381
1463
  "UpdatePackageVersionsStatus": {
@@ -1465,7 +1547,7 @@
1465
1547
  },
1466
1548
  "description": {},
1467
1549
  "upstreams": {
1468
- "shape": "S15"
1550
+ "shape": "S19"
1469
1551
  }
1470
1552
  }
1471
1553
  },
@@ -1542,7 +1624,21 @@
1542
1624
  }
1543
1625
  }
1544
1626
  },
1545
- "Sz": {
1627
+ "Sy": {
1628
+ "type": "list",
1629
+ "member": {
1630
+ "type": "structure",
1631
+ "required": [
1632
+ "key",
1633
+ "value"
1634
+ ],
1635
+ "members": {
1636
+ "key": {},
1637
+ "value": {}
1638
+ }
1639
+ }
1640
+ },
1641
+ "S13": {
1546
1642
  "type": "structure",
1547
1643
  "members": {
1548
1644
  "name": {},
@@ -1558,10 +1654,11 @@
1558
1654
  },
1559
1655
  "assetSizeBytes": {
1560
1656
  "type": "long"
1561
- }
1657
+ },
1658
+ "s3BucketArn": {}
1562
1659
  }
1563
1660
  },
1564
- "S15": {
1661
+ "S19": {
1565
1662
  "type": "list",
1566
1663
  "member": {
1567
1664
  "type": "structure",
@@ -1573,7 +1670,7 @@
1573
1670
  }
1574
1671
  }
1575
1672
  },
1576
- "S1d": {
1673
+ "S1h": {
1577
1674
  "type": "structure",
1578
1675
  "members": {
1579
1676
  "resourceArn": {},
@@ -1581,7 +1678,7 @@
1581
1678
  "document": {}
1582
1679
  }
1583
1680
  },
1584
- "S3b": {
1681
+ "S3f": {
1585
1682
  "type": "list",
1586
1683
  "member": {
1587
1684
  "type": "structure",