aws-sdk 2.1346.0 → 2.1347.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 (51) hide show
  1. package/CHANGELOG.md +19 -1
  2. package/README.md +1 -1
  3. package/apis/autoscaling-2011-01-01.examples.json +72 -0
  4. package/apis/autoscaling-2011-01-01.min.json +13 -5
  5. package/apis/autoscaling-2011-01-01.paginators.json +5 -0
  6. package/apis/batch-2016-08-10.min.json +4 -1
  7. package/apis/compute-optimizer-2019-11-01.min.json +15 -11
  8. package/apis/drs-2020-02-26.min.json +21 -2
  9. package/apis/ec2-2016-11-15.min.json +754 -660
  10. package/apis/elasticmapreduce-2009-03-31.min.json +82 -66
  11. package/apis/glue-2017-03-31.min.json +0 -1
  12. package/apis/guardduty-2017-11-28.min.json +590 -111
  13. package/apis/guardduty-2017-11-28.paginators.json +6 -0
  14. package/apis/imagebuilder-2019-12-02.min.json +546 -75
  15. package/apis/imagebuilder-2019-12-02.paginators.json +23 -0
  16. package/apis/ivs-2020-07-14.min.json +58 -46
  17. package/apis/kendra-2019-02-03.min.json +494 -240
  18. package/apis/metadata.json +4 -0
  19. package/apis/network-firewall-2020-11-12.min.json +238 -9
  20. package/apis/network-firewall-2020-11-12.paginators.json +6 -0
  21. package/apis/sagemaker-geospatial-2020-05-27.min.json +135 -107
  22. package/apis/vpc-lattice-2022-11-30.examples.json +5 -0
  23. package/apis/vpc-lattice-2022-11-30.min.json +2363 -0
  24. package/apis/vpc-lattice-2022-11-30.paginators.json +58 -0
  25. package/apis/wellarchitected-2020-03-31.min.json +125 -21
  26. package/apis/wellarchitected-2020-03-31.paginators.json +5 -0
  27. package/clients/all.d.ts +1 -0
  28. package/clients/all.js +2 -1
  29. package/clients/autoscaling.d.ts +63 -36
  30. package/clients/batch.d.ts +13 -0
  31. package/clients/computeoptimizer.d.ts +13 -3
  32. package/clients/drs.d.ts +25 -5
  33. package/clients/ec2.d.ts +112 -1
  34. package/clients/emr.d.ts +20 -0
  35. package/clients/glue.d.ts +0 -4
  36. package/clients/guardduty.d.ts +491 -8
  37. package/clients/imagebuilder.d.ts +931 -128
  38. package/clients/ivs.d.ts +17 -0
  39. package/clients/kendra.d.ts +424 -75
  40. package/clients/networkfirewall.d.ts +289 -0
  41. package/clients/sagemakergeospatial.d.ts +183 -147
  42. package/clients/vpclattice.d.ts +2772 -0
  43. package/clients/vpclattice.js +18 -0
  44. package/clients/wellarchitected.d.ts +125 -34
  45. package/dist/aws-sdk-core-react-native.js +2 -2
  46. package/dist/aws-sdk-react-native.js +60 -23
  47. package/dist/aws-sdk.js +861 -734
  48. package/dist/aws-sdk.min.js +97 -96
  49. package/lib/config_service_placeholders.d.ts +2 -0
  50. package/lib/core.js +1 -1
  51. package/package.json +1 -1
@@ -1288,5 +1288,9 @@
1288
1288
  "ivsrealtime": {
1289
1289
  "prefix": "ivs-realtime",
1290
1290
  "name": "IVSRealTime"
1291
+ },
1292
+ "vpclattice": {
1293
+ "prefix": "vpc-lattice",
1294
+ "name": "VPCLattice"
1291
1295
  }
1292
1296
  }
@@ -195,6 +195,41 @@
195
195
  }
196
196
  }
197
197
  },
198
+ "CreateTLSInspectionConfiguration": {
199
+ "input": {
200
+ "type": "structure",
201
+ "required": [
202
+ "TLSInspectionConfigurationName",
203
+ "TLSInspectionConfiguration"
204
+ ],
205
+ "members": {
206
+ "TLSInspectionConfigurationName": {},
207
+ "TLSInspectionConfiguration": {
208
+ "shape": "S3o"
209
+ },
210
+ "Description": {},
211
+ "Tags": {
212
+ "shape": "Sg"
213
+ },
214
+ "EncryptionConfiguration": {
215
+ "shape": "Sk"
216
+ }
217
+ }
218
+ },
219
+ "output": {
220
+ "type": "structure",
221
+ "required": [
222
+ "UpdateToken",
223
+ "TLSInspectionConfigurationResponse"
224
+ ],
225
+ "members": {
226
+ "UpdateToken": {},
227
+ "TLSInspectionConfigurationResponse": {
228
+ "shape": "S3w"
229
+ }
230
+ }
231
+ }
232
+ },
198
233
  "DeleteFirewall": {
199
234
  "input": {
200
235
  "type": "structure",
@@ -271,6 +306,26 @@
271
306
  }
272
307
  }
273
308
  },
309
+ "DeleteTLSInspectionConfiguration": {
310
+ "input": {
311
+ "type": "structure",
312
+ "members": {
313
+ "TLSInspectionConfigurationArn": {},
314
+ "TLSInspectionConfigurationName": {}
315
+ }
316
+ },
317
+ "output": {
318
+ "type": "structure",
319
+ "required": [
320
+ "TLSInspectionConfigurationResponse"
321
+ ],
322
+ "members": {
323
+ "TLSInspectionConfigurationResponse": {
324
+ "shape": "S3w"
325
+ }
326
+ }
327
+ }
328
+ },
274
329
  "DescribeFirewall": {
275
330
  "input": {
276
331
  "type": "structure",
@@ -330,7 +385,7 @@
330
385
  "members": {
331
386
  "FirewallArn": {},
332
387
  "LoggingConfiguration": {
333
- "shape": "S41"
388
+ "shape": "S4g"
334
389
  }
335
390
  }
336
391
  }
@@ -410,6 +465,31 @@
410
465
  }
411
466
  }
412
467
  },
468
+ "DescribeTLSInspectionConfiguration": {
469
+ "input": {
470
+ "type": "structure",
471
+ "members": {
472
+ "TLSInspectionConfigurationArn": {},
473
+ "TLSInspectionConfigurationName": {}
474
+ }
475
+ },
476
+ "output": {
477
+ "type": "structure",
478
+ "required": [
479
+ "UpdateToken",
480
+ "TLSInspectionConfigurationResponse"
481
+ ],
482
+ "members": {
483
+ "UpdateToken": {},
484
+ "TLSInspectionConfiguration": {
485
+ "shape": "S3o"
486
+ },
487
+ "TLSInspectionConfigurationResponse": {
488
+ "shape": "S3w"
489
+ }
490
+ }
491
+ }
492
+ },
413
493
  "DisassociateSubnets": {
414
494
  "input": {
415
495
  "type": "structure",
@@ -526,6 +606,33 @@
526
606
  }
527
607
  }
528
608
  },
609
+ "ListTLSInspectionConfigurations": {
610
+ "input": {
611
+ "type": "structure",
612
+ "members": {
613
+ "NextToken": {},
614
+ "MaxResults": {
615
+ "type": "integer"
616
+ }
617
+ }
618
+ },
619
+ "output": {
620
+ "type": "structure",
621
+ "members": {
622
+ "NextToken": {},
623
+ "TLSInspectionConfigurations": {
624
+ "type": "list",
625
+ "member": {
626
+ "type": "structure",
627
+ "members": {
628
+ "Name": {},
629
+ "Arn": {}
630
+ }
631
+ }
632
+ }
633
+ }
634
+ }
635
+ },
529
636
  "ListTagsForResource": {
530
637
  "input": {
531
638
  "type": "structure",
@@ -748,7 +855,7 @@
748
855
  "FirewallArn": {},
749
856
  "FirewallName": {},
750
857
  "LoggingConfiguration": {
751
- "shape": "S41"
858
+ "shape": "S4g"
752
859
  }
753
860
  }
754
861
  },
@@ -758,7 +865,7 @@
758
865
  "FirewallArn": {},
759
866
  "FirewallName": {},
760
867
  "LoggingConfiguration": {
761
- "shape": "S41"
868
+ "shape": "S4g"
762
869
  }
763
870
  }
764
871
  }
@@ -830,6 +937,40 @@
830
937
  }
831
938
  }
832
939
  }
940
+ },
941
+ "UpdateTLSInspectionConfiguration": {
942
+ "input": {
943
+ "type": "structure",
944
+ "required": [
945
+ "TLSInspectionConfiguration",
946
+ "UpdateToken"
947
+ ],
948
+ "members": {
949
+ "TLSInspectionConfigurationArn": {},
950
+ "TLSInspectionConfigurationName": {},
951
+ "TLSInspectionConfiguration": {
952
+ "shape": "S3o"
953
+ },
954
+ "Description": {},
955
+ "EncryptionConfiguration": {
956
+ "shape": "Sk"
957
+ },
958
+ "UpdateToken": {}
959
+ }
960
+ },
961
+ "output": {
962
+ "type": "structure",
963
+ "required": [
964
+ "UpdateToken",
965
+ "TLSInspectionConfigurationResponse"
966
+ ],
967
+ "members": {
968
+ "UpdateToken": {},
969
+ "TLSInspectionConfigurationResponse": {
970
+ "shape": "S3w"
971
+ }
972
+ }
973
+ }
833
974
  }
834
975
  },
835
976
  "shapes": {
@@ -1036,7 +1177,8 @@
1036
1177
  "RuleOrder": {},
1037
1178
  "StreamExceptionPolicy": {}
1038
1179
  }
1039
- }
1180
+ },
1181
+ "TLSInspectionConfigurationArn": {}
1040
1182
  }
1041
1183
  },
1042
1184
  "S1f": {
@@ -1277,10 +1419,7 @@
1277
1419
  "shape": "S39"
1278
1420
  },
1279
1421
  "Protocols": {
1280
- "type": "list",
1281
- "member": {
1282
- "type": "integer"
1283
- }
1422
+ "shape": "S3c"
1284
1423
  },
1285
1424
  "TCPFlags": {
1286
1425
  "type": "list",
@@ -1358,6 +1497,12 @@
1358
1497
  }
1359
1498
  }
1360
1499
  },
1500
+ "S3c": {
1501
+ "type": "list",
1502
+ "member": {
1503
+ "type": "integer"
1504
+ }
1505
+ },
1361
1506
  "S3g": {
1362
1507
  "type": "list",
1363
1508
  "member": {}
@@ -1413,7 +1558,91 @@
1413
1558
  }
1414
1559
  }
1415
1560
  },
1416
- "S41": {
1561
+ "S3o": {
1562
+ "type": "structure",
1563
+ "members": {
1564
+ "ServerCertificateConfigurations": {
1565
+ "type": "list",
1566
+ "member": {
1567
+ "type": "structure",
1568
+ "members": {
1569
+ "ServerCertificates": {
1570
+ "type": "list",
1571
+ "member": {
1572
+ "type": "structure",
1573
+ "members": {
1574
+ "ResourceArn": {}
1575
+ }
1576
+ }
1577
+ },
1578
+ "Scopes": {
1579
+ "type": "list",
1580
+ "member": {
1581
+ "type": "structure",
1582
+ "members": {
1583
+ "Sources": {
1584
+ "shape": "S36"
1585
+ },
1586
+ "Destinations": {
1587
+ "shape": "S36"
1588
+ },
1589
+ "SourcePorts": {
1590
+ "shape": "S39"
1591
+ },
1592
+ "DestinationPorts": {
1593
+ "shape": "S39"
1594
+ },
1595
+ "Protocols": {
1596
+ "shape": "S3c"
1597
+ }
1598
+ }
1599
+ }
1600
+ }
1601
+ }
1602
+ }
1603
+ }
1604
+ }
1605
+ },
1606
+ "S3w": {
1607
+ "type": "structure",
1608
+ "required": [
1609
+ "TLSInspectionConfigurationArn",
1610
+ "TLSInspectionConfigurationName",
1611
+ "TLSInspectionConfigurationId"
1612
+ ],
1613
+ "members": {
1614
+ "TLSInspectionConfigurationArn": {},
1615
+ "TLSInspectionConfigurationName": {},
1616
+ "TLSInspectionConfigurationId": {},
1617
+ "TLSInspectionConfigurationStatus": {},
1618
+ "Description": {},
1619
+ "Tags": {
1620
+ "shape": "Sg"
1621
+ },
1622
+ "LastModifiedTime": {
1623
+ "type": "timestamp"
1624
+ },
1625
+ "NumberOfAssociations": {
1626
+ "type": "integer"
1627
+ },
1628
+ "EncryptionConfiguration": {
1629
+ "shape": "Sk"
1630
+ },
1631
+ "Certificates": {
1632
+ "type": "list",
1633
+ "member": {
1634
+ "type": "structure",
1635
+ "members": {
1636
+ "CertificateArn": {},
1637
+ "CertificateSerial": {},
1638
+ "Status": {},
1639
+ "StatusMessage": {}
1640
+ }
1641
+ }
1642
+ }
1643
+ }
1644
+ },
1645
+ "S4g": {
1417
1646
  "type": "structure",
1418
1647
  "required": [
1419
1648
  "LogDestinationConfigs"
@@ -18,6 +18,12 @@
18
18
  "limit_key": "MaxResults",
19
19
  "result_key": "RuleGroups"
20
20
  },
21
+ "ListTLSInspectionConfigurations": {
22
+ "input_token": "NextToken",
23
+ "output_token": "NextToken",
24
+ "limit_key": "MaxResults",
25
+ "result_key": "TLSInspectionConfigurations"
26
+ },
21
27
  "ListTagsForResource": {
22
28
  "input_token": "NextToken",
23
29
  "output_token": "NextToken",