Skip to content

Commit e0b6e43

Browse files
author
awstools
committed
Updates SDK to v2.1288.0
1 parent c9478e1 commit e0b6e43

17 files changed

+896
-735
lines changed

.changes/2.1288.0.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "ApplicationAutoScaling",
5+
"description": "Customers can now use the existing DescribeScalingActivities API to also see the detailed and machine-readable reasons for Application Auto Scaling not scaling their resources and, if needed, take the necessary corrective actions."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "SSM",
10+
"description": "Adding support for QuickSetup Document Type in Systems Manager"
11+
}
12+
]

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.1287.0-->
2+
<!--LATEST=2.1288.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1288.0
6+
* feature: ApplicationAutoScaling: Customers can now use the existing DescribeScalingActivities API to also see the detailed and machine-readable reasons for Application Auto Scaling not scaling their resources and, if needed, take the necessary corrective actions.
7+
* feature: SSM: Adding support for QuickSetup Document Type in Systems Manager
8+
59
## 2.1287.0
610
* feature: SecurityLake: Allow CreateSubscriber API to take string input that allows setting more descriptive SubscriberDescription field. Make souceTypes field required in model level for UpdateSubscriberRequest as it is required for every API call on the backend. Allow ListSubscribers take any String as nextToken param.
711

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ for further details.
5757
To use the SDK in the browser, simply add the following script tag to your
5858
HTML pages:
5959

60-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1287.0.min.js"></script>
60+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1288.0.min.js"></script>
6161

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

apis/application-autoscaling-2016-02-06.min.json

Lines changed: 38 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,10 @@
145145
"MaxResults": {
146146
"type": "integer"
147147
},
148-
"NextToken": {}
148+
"NextToken": {},
149+
"IncludeNotScaledActivities": {
150+
"type": "boolean"
151+
}
149152
}
150153
},
151154
"output": {
@@ -180,7 +183,28 @@
180183
},
181184
"StatusCode": {},
182185
"StatusMessage": {},
183-
"Details": {}
186+
"Details": {},
187+
"NotScaledReasons": {
188+
"type": "list",
189+
"member": {
190+
"type": "structure",
191+
"required": [
192+
"Code"
193+
],
194+
"members": {
195+
"Code": {},
196+
"MaxCapacity": {
197+
"type": "integer"
198+
},
199+
"MinCapacity": {
200+
"type": "integer"
201+
},
202+
"CurrentCapacity": {
203+
"type": "integer"
204+
}
205+
}
206+
}
207+
}
184208
}
185209
}
186210
},
@@ -231,13 +255,13 @@
231255
"ScalableDimension": {},
232256
"PolicyType": {},
233257
"StepScalingPolicyConfiguration": {
234-
"shape": "Sx"
258+
"shape": "S10"
235259
},
236260
"TargetTrackingScalingPolicyConfiguration": {
237-
"shape": "S16"
261+
"shape": "S19"
238262
},
239263
"Alarms": {
240-
"shape": "S1k"
264+
"shape": "S1n"
241265
},
242266
"CreationTime": {
243267
"type": "timestamp"
@@ -298,7 +322,7 @@
298322
"type": "timestamp"
299323
},
300324
"ScalableTargetAction": {
301-
"shape": "S1r"
325+
"shape": "S1u"
302326
},
303327
"CreationTime": {
304328
"type": "timestamp"
@@ -326,10 +350,10 @@
326350
"ScalableDimension": {},
327351
"PolicyType": {},
328352
"StepScalingPolicyConfiguration": {
329-
"shape": "Sx"
353+
"shape": "S10"
330354
},
331355
"TargetTrackingScalingPolicyConfiguration": {
332-
"shape": "S16"
356+
"shape": "S19"
333357
}
334358
}
335359
},
@@ -341,7 +365,7 @@
341365
"members": {
342366
"PolicyARN": {},
343367
"Alarms": {
344-
"shape": "S1k"
368+
"shape": "S1n"
345369
}
346370
}
347371
}
@@ -369,7 +393,7 @@
369393
"type": "timestamp"
370394
},
371395
"ScalableTargetAction": {
372-
"shape": "S1r"
396+
"shape": "S1u"
373397
}
374398
}
375399
},
@@ -427,7 +451,7 @@
427451
}
428452
}
429453
},
430-
"Sx": {
454+
"S10": {
431455
"type": "structure",
432456
"members": {
433457
"AdjustmentType": {},
@@ -460,7 +484,7 @@
460484
"MetricAggregationType": {}
461485
}
462486
},
463-
"S16": {
487+
"S19": {
464488
"type": "structure",
465489
"required": [
466490
"TargetValue"
@@ -518,7 +542,7 @@
518542
}
519543
}
520544
},
521-
"S1k": {
545+
"S1n": {
522546
"type": "list",
523547
"member": {
524548
"type": "structure",
@@ -532,7 +556,7 @@
532556
}
533557
}
534558
},
535-
"S1r": {
559+
"S1u": {
536560
"type": "structure",
537561
"members": {
538562
"MinCapacity": {

0 commit comments

Comments
 (0)