Skip to content

Commit dd34a70

Browse files
author
awstools
committed
Updates SDK to v2.1538.0
1 parent 2881d7f commit dd34a70

16 files changed

+761
-297
lines changed

.changes/2.1538.0.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[
2+
{
3+
"type": "bugfix",
4+
"category": "clients",
5+
"description": "remove cloudnfront-keyvaluestore and neptune-graph clients. These clients are available in AWS SDK for JavaScript (v3) https://github.com/aws/aws-sdk-js-v3/."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "Keyspaces",
10+
"description": "This release adds support for Multi-Region Replication with provisioned tables, and Keyspaces auto scaling APIs"
11+
}
12+
]

.changes/next-release/bugfix-clients-3ffd0846.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

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

5+
## 2.1538.0
6+
* bugfix: clients: remove cloudnfront-keyvaluestore and neptune-graph clients. These clients are available in AWS SDK for JavaScript (v3) https://github.com/aws/aws-sdk-js-v3/.
7+
* feature: Keyspaces: This release adds support for Multi-Region Replication with provisioned tables, and Keyspaces auto scaling APIs
8+
59
## 2.1537.0
610
* feature: IoTFleetWise: Updated APIs: SignalNodeType query parameter has been added to ListSignalCatalogNodesRequest and ListVehiclesResponse has been extended with attributes field.
711
* feature: Iot: Revert release of LogTargetTypes

README.md

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

72-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1537.0.min.js"></script>
72+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1538.0.min.js"></script>
7373

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

apis/dynamodb-2012-08-10.normal.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6971,7 +6971,7 @@
69716971
},
69726972
"StreamSpecification": {
69736973
"shape": "StreamSpecification",
6974-
"documentation": "<p>Represents the DynamoDB Streams configuration for the table.</p> <note> <p>You receive a <code>ResourceInUseException</code> if you try to enable a stream on a table that already has a stream, or if you try to disable a stream on a table that doesn't have a stream.</p> </note>"
6974+
"documentation": "<p>Represents the DynamoDB Streams configuration for the table.</p> <note> <p>You receive a <code>ValidationException</code> if you try to enable a stream on a table that already has a stream, or if you try to disable a stream on a table that doesn't have a stream.</p> </note>"
69756975
},
69766976
"SSESpecification": {
69776977
"shape": "SSESpecification",

apis/keyspaces-2022-02-10.min.json

Lines changed: 159 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,12 @@
8585
},
8686
"clientSideTimestamps": {
8787
"shape": "S13"
88+
},
89+
"autoScalingSpecification": {
90+
"shape": "S15"
91+
},
92+
"replicaSpecifications": {
93+
"shape": "S1c"
8894
}
8995
}
9096
},
@@ -188,22 +194,7 @@
188194
"shape": "Sf"
189195
},
190196
"capacitySpecification": {
191-
"type": "structure",
192-
"required": [
193-
"throughputMode"
194-
],
195-
"members": {
196-
"throughputMode": {},
197-
"readCapacityUnits": {
198-
"type": "long"
199-
},
200-
"writeCapacityUnits": {
201-
"type": "long"
202-
},
203-
"lastUpdateToPayPerRequestTimestamp": {
204-
"type": "timestamp"
205-
}
206-
}
197+
"shape": "S1p"
207198
},
208199
"encryptionSpecification": {
209200
"shape": "Sv"
@@ -231,6 +222,60 @@
231222
},
232223
"clientSideTimestamps": {
233224
"shape": "S13"
225+
},
226+
"replicaSpecifications": {
227+
"type": "list",
228+
"member": {
229+
"type": "structure",
230+
"members": {
231+
"region": {},
232+
"status": {},
233+
"capacitySpecification": {
234+
"shape": "S1p"
235+
}
236+
}
237+
}
238+
}
239+
}
240+
}
241+
},
242+
"GetTableAutoScalingSettings": {
243+
"input": {
244+
"type": "structure",
245+
"required": [
246+
"keyspaceName",
247+
"tableName"
248+
],
249+
"members": {
250+
"keyspaceName": {},
251+
"tableName": {}
252+
}
253+
},
254+
"output": {
255+
"type": "structure",
256+
"required": [
257+
"keyspaceName",
258+
"tableName",
259+
"resourceArn"
260+
],
261+
"members": {
262+
"keyspaceName": {},
263+
"tableName": {},
264+
"resourceArn": {},
265+
"autoScalingSpecification": {
266+
"shape": "S15"
267+
},
268+
"replicaSpecifications": {
269+
"type": "list",
270+
"member": {
271+
"type": "structure",
272+
"members": {
273+
"region": {},
274+
"autoScalingSpecification": {
275+
"shape": "S15"
276+
}
277+
}
278+
}
234279
}
235280
}
236281
}
@@ -363,6 +408,12 @@
363408
},
364409
"tagsOverride": {
365410
"shape": "S3"
411+
},
412+
"autoScalingSpecification": {
413+
"shape": "S15"
414+
},
415+
"replicaSpecifications": {
416+
"shape": "S1c"
366417
}
367418
}
368419
},
@@ -444,6 +495,12 @@
444495
},
445496
"clientSideTimestamps": {
446497
"shape": "S13"
498+
},
499+
"autoScalingSpecification": {
500+
"shape": "S15"
501+
},
502+
"replicaSpecifications": {
503+
"shape": "S1c"
447504
}
448505
}
449506
},
@@ -601,6 +658,92 @@
601658
"members": {
602659
"status": {}
603660
}
661+
},
662+
"S15": {
663+
"type": "structure",
664+
"members": {
665+
"writeCapacityAutoScaling": {
666+
"shape": "S16"
667+
},
668+
"readCapacityAutoScaling": {
669+
"shape": "S16"
670+
}
671+
}
672+
},
673+
"S16": {
674+
"type": "structure",
675+
"members": {
676+
"autoScalingDisabled": {
677+
"type": "boolean"
678+
},
679+
"minimumUnits": {
680+
"type": "long"
681+
},
682+
"maximumUnits": {
683+
"type": "long"
684+
},
685+
"scalingPolicy": {
686+
"type": "structure",
687+
"members": {
688+
"targetTrackingScalingPolicyConfiguration": {
689+
"type": "structure",
690+
"required": [
691+
"targetValue"
692+
],
693+
"members": {
694+
"disableScaleIn": {
695+
"type": "boolean"
696+
},
697+
"scaleInCooldown": {
698+
"type": "integer"
699+
},
700+
"scaleOutCooldown": {
701+
"type": "integer"
702+
},
703+
"targetValue": {
704+
"type": "double"
705+
}
706+
}
707+
}
708+
}
709+
}
710+
}
711+
},
712+
"S1c": {
713+
"type": "list",
714+
"member": {
715+
"type": "structure",
716+
"required": [
717+
"region"
718+
],
719+
"members": {
720+
"region": {},
721+
"readCapacityUnits": {
722+
"type": "long"
723+
},
724+
"readCapacityAutoScaling": {
725+
"shape": "S16"
726+
}
727+
}
728+
}
729+
},
730+
"S1p": {
731+
"type": "structure",
732+
"required": [
733+
"throughputMode"
734+
],
735+
"members": {
736+
"throughputMode": {},
737+
"readCapacityUnits": {
738+
"type": "long"
739+
},
740+
"writeCapacityUnits": {
741+
"type": "long"
742+
},
743+
"lastUpdateToPayPerRequestTimestamp": {
744+
"type": "timestamp"
745+
}
746+
}
604747
}
605748
}
606749
}

0 commit comments

Comments
 (0)