aws-sdk 2.1372.0 → 2.1373.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,13 @@
1
1
  # Changelog for AWS SDK for JavaScript
2
- <!--LATEST=2.1372.0-->
2
+ <!--LATEST=2.1373.0-->
3
3
  <!--ENTRYINSERT-->
4
4
 
5
+ ## 2.1373.0
6
+ * feature: EC2: This release adds support the inf2 and trn1n instances. inf2 instances are purpose built for deep learning inference while trn1n instances are powered by AWS Trainium accelerators and they build on the capabilities of Trainium-powered trn1 instances.
7
+ * feature: Inspector2: Amazon Inspector now allows customers to search its vulnerability intelligence database if any of the Inspector scanning types are activated.
8
+ * feature: MediaTailor: This release adds support for AFTER_LIVE_EDGE mode configuration for avail suppression, and adding a fill-policy setting that sets the avail suppression to PARTIAL_AVAIL or FULL_AVAIL_ONLY when AFTER_LIVE_EDGE is enabled.
9
+ * feature: SQS: Revert previous SQS protocol change.
10
+
5
11
  ## 2.1372.0
6
12
  * feature: CloudWatch: Adds support for filtering by metric names in CloudWatch Metric Streams.
7
13
  * feature: ConfigService: Updated ResourceType enum with new resource types onboarded by AWS Config in April 2023.
package/README.md CHANGED
@@ -72,7 +72,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
72
72
  To use the SDK in the browser, simply add the following script tag to your
73
73
  HTML pages:
74
74
 
75
- <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1372.0.min.js"></script>
75
+ <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1373.0.min.js"></script>
76
76
 
77
77
  You can also build a custom browser SDK with your specified set of AWS services.
78
78
  This can allow you to reduce the SDK's size, specify different API versions of
@@ -1761,6 +1761,148 @@
1761
1761
  }
1762
1762
  }
1763
1763
  },
1764
+ "SearchVulnerabilities": {
1765
+ "http": {
1766
+ "requestUri": "/vulnerabilities/search",
1767
+ "responseCode": 200
1768
+ },
1769
+ "input": {
1770
+ "type": "structure",
1771
+ "required": [
1772
+ "filterCriteria"
1773
+ ],
1774
+ "members": {
1775
+ "filterCriteria": {
1776
+ "type": "structure",
1777
+ "required": [
1778
+ "vulnerabilityIds"
1779
+ ],
1780
+ "members": {
1781
+ "vulnerabilityIds": {
1782
+ "type": "list",
1783
+ "member": {}
1784
+ }
1785
+ }
1786
+ },
1787
+ "nextToken": {}
1788
+ }
1789
+ },
1790
+ "output": {
1791
+ "type": "structure",
1792
+ "required": [
1793
+ "vulnerabilities"
1794
+ ],
1795
+ "members": {
1796
+ "nextToken": {},
1797
+ "vulnerabilities": {
1798
+ "type": "list",
1799
+ "member": {
1800
+ "type": "structure",
1801
+ "required": [
1802
+ "id"
1803
+ ],
1804
+ "members": {
1805
+ "atigData": {
1806
+ "type": "structure",
1807
+ "members": {
1808
+ "firstSeen": {
1809
+ "type": "timestamp"
1810
+ },
1811
+ "lastSeen": {
1812
+ "type": "timestamp"
1813
+ },
1814
+ "targets": {
1815
+ "type": "list",
1816
+ "member": {}
1817
+ },
1818
+ "ttps": {
1819
+ "type": "list",
1820
+ "member": {}
1821
+ }
1822
+ }
1823
+ },
1824
+ "cisaData": {
1825
+ "type": "structure",
1826
+ "members": {
1827
+ "action": {},
1828
+ "dateAdded": {
1829
+ "type": "timestamp"
1830
+ },
1831
+ "dateDue": {
1832
+ "type": "timestamp"
1833
+ }
1834
+ }
1835
+ },
1836
+ "cvss2": {
1837
+ "type": "structure",
1838
+ "members": {
1839
+ "baseScore": {
1840
+ "type": "double"
1841
+ },
1842
+ "scoringVector": {}
1843
+ }
1844
+ },
1845
+ "cvss3": {
1846
+ "type": "structure",
1847
+ "members": {
1848
+ "baseScore": {
1849
+ "type": "double"
1850
+ },
1851
+ "scoringVector": {}
1852
+ }
1853
+ },
1854
+ "cwes": {
1855
+ "type": "list",
1856
+ "member": {}
1857
+ },
1858
+ "description": {},
1859
+ "detectionPlatforms": {
1860
+ "type": "list",
1861
+ "member": {}
1862
+ },
1863
+ "epss": {
1864
+ "type": "structure",
1865
+ "members": {
1866
+ "score": {
1867
+ "type": "double"
1868
+ }
1869
+ }
1870
+ },
1871
+ "exploitObserved": {
1872
+ "type": "structure",
1873
+ "members": {
1874
+ "firstSeen": {
1875
+ "type": "timestamp"
1876
+ },
1877
+ "lastSeen": {
1878
+ "type": "timestamp"
1879
+ }
1880
+ }
1881
+ },
1882
+ "id": {},
1883
+ "referenceUrls": {
1884
+ "type": "list",
1885
+ "member": {}
1886
+ },
1887
+ "relatedVulnerabilities": {
1888
+ "type": "list",
1889
+ "member": {}
1890
+ },
1891
+ "source": {},
1892
+ "sourceUrl": {},
1893
+ "vendorCreatedAt": {
1894
+ "type": "timestamp"
1895
+ },
1896
+ "vendorSeverity": {},
1897
+ "vendorUpdatedAt": {
1898
+ "type": "timestamp"
1899
+ }
1900
+ }
1901
+ }
1902
+ }
1903
+ }
1904
+ }
1905
+ },
1764
1906
  "TagResource": {
1765
1907
  "http": {
1766
1908
  "requestUri": "/tags/{resourceArn}",
@@ -52,6 +52,11 @@
52
52
  "output_token": "nextToken",
53
53
  "limit_key": "maxResults",
54
54
  "result_key": "totals"
55
+ },
56
+ "SearchVulnerabilities": {
57
+ "input_token": "nextToken",
58
+ "output_token": "nextToken",
59
+ "result_key": "vulnerabilities"
55
60
  }
56
61
  }
57
62
  }
@@ -1023,28 +1023,28 @@
1023
1023
  "shape": "S2u"
1024
1024
  },
1025
1025
  "Bumper": {
1026
- "shape": "S2w"
1026
+ "shape": "S2x"
1027
1027
  },
1028
1028
  "CdnConfiguration": {
1029
- "shape": "S2x"
1029
+ "shape": "S2y"
1030
1030
  },
1031
1031
  "ConfigurationAliases": {
1032
- "shape": "S2y"
1032
+ "shape": "S2z"
1033
1033
  },
1034
1034
  "DashConfiguration": {
1035
- "shape": "S2z"
1035
+ "shape": "S30"
1036
1036
  },
1037
1037
  "HlsConfiguration": {
1038
- "shape": "S31"
1038
+ "shape": "S32"
1039
1039
  },
1040
1040
  "LivePreRollConfiguration": {
1041
- "shape": "S32"
1041
+ "shape": "S33"
1042
1042
  },
1043
1043
  "LogConfiguration": {
1044
- "shape": "S33"
1044
+ "shape": "S34"
1045
1045
  },
1046
1046
  "ManifestProcessingRules": {
1047
- "shape": "S34"
1047
+ "shape": "S35"
1048
1048
  },
1049
1049
  "Name": {},
1050
1050
  "PersonalizationThresholdSeconds": {
@@ -1150,7 +1150,7 @@
1150
1150
  "shape": "Sk"
1151
1151
  },
1152
1152
  "RelatedResourceArns": {
1153
- "shape": "S3e"
1153
+ "shape": "S3f"
1154
1154
  },
1155
1155
  "ResourceArn": {}
1156
1156
  }
@@ -1325,28 +1325,28 @@
1325
1325
  "shape": "S2u"
1326
1326
  },
1327
1327
  "Bumper": {
1328
- "shape": "S2w"
1328
+ "shape": "S2x"
1329
1329
  },
1330
1330
  "CdnConfiguration": {
1331
- "shape": "S2x"
1331
+ "shape": "S2y"
1332
1332
  },
1333
1333
  "ConfigurationAliases": {
1334
- "shape": "S2y"
1334
+ "shape": "S2z"
1335
1335
  },
1336
1336
  "DashConfiguration": {
1337
- "shape": "S2z"
1337
+ "shape": "S30"
1338
1338
  },
1339
1339
  "HlsConfiguration": {
1340
- "shape": "S31"
1340
+ "shape": "S32"
1341
1341
  },
1342
1342
  "LivePreRollConfiguration": {
1343
- "shape": "S32"
1343
+ "shape": "S33"
1344
1344
  },
1345
1345
  "LogConfiguration": {
1346
- "shape": "S33"
1346
+ "shape": "S34"
1347
1347
  },
1348
1348
  "ManifestProcessingRules": {
1349
- "shape": "S34"
1349
+ "shape": "S35"
1350
1350
  },
1351
1351
  "Name": {},
1352
1352
  "PersonalizationThresholdSeconds": {
@@ -1622,10 +1622,10 @@
1622
1622
  "shape": "S2u"
1623
1623
  },
1624
1624
  "Bumper": {
1625
- "shape": "S2w"
1625
+ "shape": "S2x"
1626
1626
  },
1627
1627
  "CdnConfiguration": {
1628
- "shape": "S2x"
1628
+ "shape": "S2y"
1629
1629
  },
1630
1630
  "ConfigurationAliases": {
1631
1631
  "type": "map",
@@ -1642,10 +1642,10 @@
1642
1642
  }
1643
1643
  },
1644
1644
  "LivePreRollConfiguration": {
1645
- "shape": "S32"
1645
+ "shape": "S33"
1646
1646
  },
1647
1647
  "ManifestProcessingRules": {
1648
- "shape": "S34"
1648
+ "shape": "S35"
1649
1649
  },
1650
1650
  "Name": {},
1651
1651
  "PersonalizationThresholdSeconds": {
@@ -1668,28 +1668,28 @@
1668
1668
  "shape": "S2u"
1669
1669
  },
1670
1670
  "Bumper": {
1671
- "shape": "S2w"
1671
+ "shape": "S2x"
1672
1672
  },
1673
1673
  "CdnConfiguration": {
1674
- "shape": "S2x"
1674
+ "shape": "S2y"
1675
1675
  },
1676
1676
  "ConfigurationAliases": {
1677
- "shape": "S2y"
1677
+ "shape": "S2z"
1678
1678
  },
1679
1679
  "DashConfiguration": {
1680
- "shape": "S2z"
1680
+ "shape": "S30"
1681
1681
  },
1682
1682
  "HlsConfiguration": {
1683
- "shape": "S31"
1683
+ "shape": "S32"
1684
1684
  },
1685
1685
  "LivePreRollConfiguration": {
1686
- "shape": "S32"
1686
+ "shape": "S33"
1687
1687
  },
1688
1688
  "LogConfiguration": {
1689
- "shape": "S33"
1689
+ "shape": "S34"
1690
1690
  },
1691
1691
  "ManifestProcessingRules": {
1692
- "shape": "S34"
1692
+ "shape": "S35"
1693
1693
  },
1694
1694
  "Name": {},
1695
1695
  "PersonalizationThresholdSeconds": {
@@ -1798,7 +1798,7 @@
1798
1798
  "locationName": "ResourceArn"
1799
1799
  },
1800
1800
  "TagKeys": {
1801
- "shape": "S3e",
1801
+ "shape": "S3f",
1802
1802
  "location": "querystring",
1803
1803
  "locationName": "tagKeys"
1804
1804
  }
@@ -2373,32 +2373,33 @@
2373
2373
  "S2u": {
2374
2374
  "type": "structure",
2375
2375
  "members": {
2376
+ "FillPolicy": {},
2376
2377
  "Mode": {},
2377
2378
  "Value": {}
2378
2379
  }
2379
2380
  },
2380
- "S2w": {
2381
+ "S2x": {
2381
2382
  "type": "structure",
2382
2383
  "members": {
2383
2384
  "EndUrl": {},
2384
2385
  "StartUrl": {}
2385
2386
  }
2386
2387
  },
2387
- "S2x": {
2388
+ "S2y": {
2388
2389
  "type": "structure",
2389
2390
  "members": {
2390
2391
  "AdSegmentUrlPrefix": {},
2391
2392
  "ContentSegmentUrlPrefix": {}
2392
2393
  }
2393
2394
  },
2394
- "S2y": {
2395
+ "S2z": {
2395
2396
  "type": "map",
2396
2397
  "key": {},
2397
2398
  "value": {
2398
2399
  "shape": "Sg"
2399
2400
  }
2400
2401
  },
2401
- "S2z": {
2402
+ "S30": {
2402
2403
  "type": "structure",
2403
2404
  "members": {
2404
2405
  "ManifestEndpointPrefix": {},
@@ -2406,13 +2407,13 @@
2406
2407
  "OriginManifestType": {}
2407
2408
  }
2408
2409
  },
2409
- "S31": {
2410
+ "S32": {
2410
2411
  "type": "structure",
2411
2412
  "members": {
2412
2413
  "ManifestEndpointPrefix": {}
2413
2414
  }
2414
2415
  },
2415
- "S32": {
2416
+ "S33": {
2416
2417
  "type": "structure",
2417
2418
  "members": {
2418
2419
  "AdDecisionServerUrl": {},
@@ -2421,7 +2422,7 @@
2421
2422
  }
2422
2423
  }
2423
2424
  },
2424
- "S33": {
2425
+ "S34": {
2425
2426
  "type": "structure",
2426
2427
  "required": [
2427
2428
  "PercentEnabled"
@@ -2432,7 +2433,7 @@
2432
2433
  }
2433
2434
  }
2434
2435
  },
2435
- "S34": {
2436
+ "S35": {
2436
2437
  "type": "structure",
2437
2438
  "members": {
2438
2439
  "AdMarkerPassthrough": {
@@ -2445,7 +2446,7 @@
2445
2446
  }
2446
2447
  }
2447
2448
  },
2448
- "S3e": {
2449
+ "S3f": {
2449
2450
  "type": "list",
2450
2451
  "member": {}
2451
2452
  }