Skip to content

Commit 0112e50

Browse files
author
awstools
committed
Updates SDK to v2.1373.0
1 parent 250002b commit 0112e50

22 files changed

+1261
-621
lines changed

.changes/2.1373.0.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "EC2",
5+
"description": "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."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "Inspector2",
10+
"description": "Amazon Inspector now allows customers to search its vulnerability intelligence database if any of the Inspector scanning types are activated."
11+
},
12+
{
13+
"type": "feature",
14+
"category": "MediaTailor",
15+
"description": "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."
16+
},
17+
{
18+
"type": "feature",
19+
"category": "SQS",
20+
"description": "Revert previous SQS protocol change."
21+
}
22+
]

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1372.0-->
2+
<!--LATEST=2.1373.0-->
33
<!--ENTRYINSERT-->
44

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+
511
## 2.1372.0
612
* feature: CloudWatch: Adds support for filtering by metric names in CloudWatch Metric Streams.
713
* feature: ConfigService: Updated ResourceType enum with new resource types onboarded by AWS Config in April 2023.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
7272
To use the SDK in the browser, simply add the following script tag to your
7373
HTML pages:
7474

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

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

apis/ec2-2016-11-15.normal.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37834,7 +37834,12 @@
3783437834
"m6in.metal",
3783537835
"m6idn.metal",
3783637836
"r6in.metal",
37837-
"r6idn.metal"
37837+
"r6idn.metal",
37838+
"inf2.xlarge",
37839+
"inf2.8xlarge",
37840+
"inf2.24xlarge",
37841+
"inf2.48xlarge",
37842+
"trn1n.32xlarge"
3783837843
]
3783937844
},
3784037845
"InstanceTypeHypervisor": {
@@ -47832,7 +47837,7 @@
4783247837
},
4783347838
"PrivateIpAddressCount": {
4783447839
"type": "integer",
47835-
"max": 7,
47840+
"max": 31,
4783647841
"min": 1
4783747842
},
4783847843
"PrivateIpAddressSpecification": {

apis/inspector2-2020-06-08.min.json

Lines changed: 142 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1761,6 +1761,148 @@
17611761
}
17621762
}
17631763
},
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+
},
17641906
"TagResource": {
17651907
"http": {
17661908
"requestUri": "/tags/{resourceArn}",

0 commit comments

Comments
 (0)