Skip to content

Commit aaf835a

Browse files
author
awstools
committed
Updates SDK to v2.1046.0
1 parent 58f7c4b commit aaf835a

29 files changed

+2179
-573
lines changed

.changes/2.1046.0.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "EC2",
5+
"description": "Adds waiters support for internet gateways."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "LexModelsV2",
10+
"description": "Added support for grammar slot type in Amazon Lex. You can author your own grammar in the XML format per the SRGS specification to collect information in a conversation."
11+
},
12+
{
13+
"type": "feature",
14+
"category": "NetworkFirewall",
15+
"description": "This release adds support for managed rule groups."
16+
},
17+
{
18+
"type": "feature",
19+
"category": "Route53Domains",
20+
"description": "Amazon Route 53 domain registration APIs now support filtering and sorting in the ListDomains API, deleting a domain by using the DeleteDomain API and getting domain pricing information by using the ListPrices API."
21+
},
22+
{
23+
"type": "feature",
24+
"category": "Route53RecoveryControlConfig",
25+
"description": "This release adds tagging supports to Route53 Recovery Control Configuration. New APIs: TagResource, UntagResource and ListTagsForResource. Updates: add optional field `tags` to support tagging while calling CreateCluster, CreateControlPanel and CreateSafetyRule."
26+
}
27+
]

CHANGELOG.md

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

5+
## 2.1046.0
6+
* feature: EC2: Adds waiters support for internet gateways.
7+
* feature: LexModelsV2: Added support for grammar slot type in Amazon Lex. You can author your own grammar in the XML format per the SRGS specification to collect information in a conversation.
8+
* feature: NetworkFirewall: This release adds support for managed rule groups.
9+
* feature: Route53Domains: Amazon Route 53 domain registration APIs now support filtering and sorting in the ListDomains API, deleting a domain by using the DeleteDomain API and getting domain pricing information by using the ListPrices API.
10+
* feature: Route53RecoveryControlConfig: This release adds tagging supports to Route53 Recovery Control Configuration. New APIs: TagResource, UntagResource and ListTagsForResource. Updates: add optional field `tags` to support tagging while calling CreateCluster, CreateControlPanel and CreateSafetyRule.
11+
512
## 2.1045.0
613
* feature: CloudWatchLogs: This release adds AWS Organizations support as condition key in destination policy for cross account Subscriptions in CloudWatch Logs.
714
* feature: ComprehendMedical: This release adds a new set of APIs (synchronous and batch) to support the SNOMED-CT ontology.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
2929
To use the SDK in the browser, simply add the following script tag to your
3030
HTML pages:
3131

32-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1045.0.min.js"></script>
32+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1046.0.min.js"></script>
3333

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24901,7 +24901,7 @@
2490124901
"type": "structure",
2490224902
"members": {
2490324903
"ElasticGpuId": {
24904-
"shape": "String",
24904+
"shape": "ElasticGpuId",
2490524905
"documentation": "<p>The ID of the Elastic Graphics accelerator.</p>",
2490624906
"locationName": "elasticGpuId"
2490724907
},

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

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,24 @@
281281
}
282282
]
283283
},
284+
"InternetGatewayExists": {
285+
"operation": "DescribeInternetGateways",
286+
"delay": 5,
287+
"maxAttempts": 6,
288+
"acceptors": [
289+
{
290+
"expected": true,
291+
"matcher": "path",
292+
"state": "success",
293+
"argument": "length(InternetGateways[].InternetGatewayId) > `0`"
294+
},
295+
{
296+
"expected": "InvalidInternetGateway.NotFound",
297+
"matcher": "error",
298+
"state": "retry"
299+
}
300+
]
301+
},
284302
"KeyPairExists": {
285303
"operation": "DescribeKeyPairs",
286304
"delay": 5,

0 commit comments

Comments
 (0)