Skip to content

Commit 41746a0

Browse files
author
awstools
committed
Updates SDK to v2.1649.0
1 parent d452976 commit 41746a0

27 files changed

+2077
-344
lines changed

Diff for: .changes/2.1649.0.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "ControlTower",
5+
"description": "Added ListLandingZoneOperations API."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "EKS",
10+
"description": "Added support for disabling unmanaged addons during cluster creation."
11+
},
12+
{
13+
"type": "feature",
14+
"category": "IVSRealTime",
15+
"description": "IVS Real-Time now offers customers the ability to upload public keys for customer vended participant tokens."
16+
},
17+
{
18+
"type": "feature",
19+
"category": "KinesisAnalyticsV2",
20+
"description": "This release adds support for new ListApplicationOperations and DescribeApplicationOperation APIs. It adds a new configuration to enable system rollbacks, adds field ApplicationVersionCreateTimestamp for clarity and improves support for pagination for APIs."
21+
},
22+
{
23+
"type": "feature",
24+
"category": "OpenSearch",
25+
"description": "This release adds support for enabling or disabling Natural Language Query Processing feature for Amazon OpenSearch Service domains, and provides visibility into the current state of the setup or tear-down."
26+
}
27+
]

Diff for: CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1648.0-->
2+
<!--LATEST=2.1649.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1649.0
6+
* feature: ControlTower: Added ListLandingZoneOperations API.
7+
* feature: EKS: Added support for disabling unmanaged addons during cluster creation.
8+
* feature: IVSRealTime: IVS Real-Time now offers customers the ability to upload public keys for customer vended participant tokens.
9+
* feature: KinesisAnalyticsV2: This release adds support for new ListApplicationOperations and DescribeApplicationOperation APIs. It adds a new configuration to enable system rollbacks, adds field ApplicationVersionCreateTimestamp for clarity and improves support for pagination for APIs.
10+
* feature: OpenSearch: This release adds support for enabling or disabling Natural Language Query Processing feature for Amazon OpenSearch Service domains, and provides visibility into the current state of the setup or tear-down.
11+
512
## 2.1648.0
613
* feature: AutoScaling: Doc only update for Auto Scaling's TargetTrackingMetricDataQuery
714
* feature: EC2: This release is for the launch of the new u7ib-12tb.224xlarge, R8g, c7gn.metal and mac2-m1ultra.metal instance types

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
6464
To use the SDK in the browser, simply add the following script tag to your
6565
HTML pages:
6666

67-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1648.0.min.js"></script>
67+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1649.0.min.js"></script>
6868

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

Diff for: apis/controltower-2018-05-10.min.json

+53-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@
1212
"serviceId": "ControlTower",
1313
"signatureVersion": "v4",
1414
"signingName": "controltower",
15-
"uid": "controltower-2018-05-10"
15+
"uid": "controltower-2018-05-10",
16+
"auth": [
17+
"aws.auth#sigv4"
18+
]
1619
},
1720
"operations": {
1821
"CreateLandingZone": {
@@ -486,6 +489,7 @@
486489
"endTime": {
487490
"shape": "S10"
488491
},
492+
"operationIdentifier": {},
489493
"operationType": {},
490494
"startTime": {
491495
"shape": "S10"
@@ -721,6 +725,54 @@
721725
}
722726
}
723727
},
728+
"ListLandingZoneOperations": {
729+
"http": {
730+
"requestUri": "/list-landingzone-operations",
731+
"responseCode": 200
732+
},
733+
"input": {
734+
"type": "structure",
735+
"members": {
736+
"filter": {
737+
"type": "structure",
738+
"members": {
739+
"statuses": {
740+
"type": "list",
741+
"member": {}
742+
},
743+
"types": {
744+
"type": "list",
745+
"member": {}
746+
}
747+
}
748+
},
749+
"maxResults": {
750+
"type": "integer"
751+
},
752+
"nextToken": {}
753+
}
754+
},
755+
"output": {
756+
"type": "structure",
757+
"required": [
758+
"landingZoneOperations"
759+
],
760+
"members": {
761+
"landingZoneOperations": {
762+
"type": "list",
763+
"member": {
764+
"type": "structure",
765+
"members": {
766+
"operationIdentifier": {},
767+
"operationType": {},
768+
"status": {}
769+
}
770+
}
771+
},
772+
"nextToken": {}
773+
}
774+
}
775+
},
724776
"ListLandingZones": {
725777
"http": {
726778
"requestUri": "/list-landingzones",

0 commit comments

Comments
 (0)