Skip to content

Commit

Permalink
Updates SDK to v2.1046.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Dec 9, 2021
1 parent 58f7c4b commit aaf835a
Show file tree
Hide file tree
Showing 29 changed files with 2,179 additions and 573 deletions.
27 changes: 27 additions & 0 deletions .changes/2.1046.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"type": "feature",
"category": "EC2",
"description": "Adds waiters support for internet gateways."
},
{
"type": "feature",
"category": "LexModelsV2",
"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."
},
{
"type": "feature",
"category": "NetworkFirewall",
"description": "This release adds support for managed rule groups."
},
{
"type": "feature",
"category": "Route53Domains",
"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."
},
{
"type": "feature",
"category": "Route53RecoveryControlConfig",
"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."
}
]
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1045.0-->
<!--LATEST=2.1046.0-->
<!--ENTRYINSERT-->

## 2.1046.0
* feature: EC2: Adds waiters support for internet gateways.
* 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.
* feature: NetworkFirewall: This release adds support for managed rule groups.
* 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.
* 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.

## 2.1045.0
* feature: CloudWatchLogs: This release adds AWS Organizations support as condition key in destination policy for cross account Subscriptions in CloudWatch Logs.
* feature: ComprehendMedical: This release adds a new set of APIs (synchronous and batch) to support the SNOMED-CT ontology.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
To use the SDK in the browser, simply add the following script tag to your
HTML pages:

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

You can also build a custom browser SDK with your specified set of AWS services.
This can allow you to reduce the SDK's size, specify different API versions of
Expand Down
2 changes: 1 addition & 1 deletion apis/ec2-2016-11-15.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -24901,7 +24901,7 @@
"type": "structure",
"members": {
"ElasticGpuId": {
"shape": "String",
"shape": "ElasticGpuId",
"documentation": "<p>The ID of the Elastic Graphics accelerator.</p>",
"locationName": "elasticGpuId"
},
Expand Down
18 changes: 18 additions & 0 deletions apis/ec2-2016-11-15.waiters2.json
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,24 @@
}
]
},
"InternetGatewayExists": {
"operation": "DescribeInternetGateways",
"delay": 5,
"maxAttempts": 6,
"acceptors": [
{
"expected": true,
"matcher": "path",
"state": "success",
"argument": "length(InternetGateways[].InternetGatewayId) > `0`"
},
{
"expected": "InvalidInternetGateway.NotFound",
"matcher": "error",
"state": "retry"
}
]
},
"KeyPairExists": {
"operation": "DescribeKeyPairs",
"delay": 5,
Expand Down
Loading

0 comments on commit aaf835a

Please sign in to comment.