aws-sdk 2.1080.0 → 2.1081.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -1
- package/README.md +1 -1
- package/apis/autoscaling-2011-01-01.examples.json +31 -46
- package/apis/autoscaling-2011-01-01.min.json +71 -57
- package/apis/databrew-2017-07-25.min.json +41 -38
- package/apis/fms-2018-01-01.min.json +130 -74
- package/apis/lightsail-2016-11-28.min.json +10 -3
- package/apis/s3-2006-03-01.examples.json +145 -145
- package/apis/s3-2006-03-01.min.json +772 -239
- package/apis/s3control-2018-08-20.min.json +52 -51
- package/apis/transfer-2018-11-05.paginators.json +27 -8
- package/clients/autoscaling.d.ts +34 -19
- package/clients/databrew.d.ts +5 -0
- package/clients/fms.d.ts +122 -6
- package/clients/lightsail.d.ts +21 -9
- package/clients/route53.d.ts +12 -12
- package/clients/s3.d.ts +731 -200
- package/clients/s3control.d.ts +5 -0
- package/dist/aws-sdk-core-react-native.js +7 -2
- package/dist/aws-sdk-react-native.js +14 -9
- package/dist/aws-sdk.js +852 -300
- package/dist/aws-sdk.min.js +91 -90
- package/lib/core.js +1 -1
- package/lib/model/operation.js +6 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,16 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1081.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1081.0
|
|
6
|
+
* feature: AutoScaling: You can now hibernate instances in a warm pool to stop instances without deleting their RAM contents. You can now also return instances to the warm pool on scale in, instead of always terminating capacity that you will need later.
|
|
7
|
+
* feature: DataBrew: This AWS Glue Databrew release adds feature to merge job outputs into a max number of files for S3 File output type.
|
|
8
|
+
* feature: FMS: AWS Firewall Manager now supports the configuration of AWS Network Firewall policies with either centralized or distributed deployment models. This release also adds support for custom endpoint configuration, where you can choose which Availability Zones to create firewall endpoints in.
|
|
9
|
+
* feature: Lightsail: This release adds support to delete and create Lightsail default key pairs that you can use with Lightsail instances.
|
|
10
|
+
* feature: S3: This release adds support for new integrity checking capabilities in Amazon S3. You can choose from four supported checksum algorithms for data integrity checking on your upload and download requests. In addition, AWS SDK can automatically calculate a checksum as it streams data into S3
|
|
11
|
+
* feature: S3Control: Amazon S3 Batch Operations adds support for new integrity checking capabilities in Amazon S3.
|
|
12
|
+
* feature: Transfer: Support automatic pagination when listing AWS Transfer Family resources.
|
|
13
|
+
|
|
5
14
|
## 2.1080.0
|
|
6
15
|
* feature: Lambda: Lambda releases .NET 6 managed runtime to be available in all commercial regions.
|
|
7
16
|
* feature: Textract: Added support for merged cells and column header for table response.
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
|
|
|
29
29
|
To use the SDK in the browser, simply add the following script tag to your
|
|
30
30
|
HTML pages:
|
|
31
31
|
|
|
32
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
|
32
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1081.0.min.js"></script>
|
|
33
33
|
|
|
34
34
|
You can also build a custom browser SDK with your specified set of AWS services.
|
|
35
35
|
This can allow you to reduce the SDK's size, specify different API versions of
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
"input": {
|
|
102
102
|
"AutoScalingGroupName": "my-auto-scaling-group",
|
|
103
103
|
"LaunchTemplate": {
|
|
104
|
-
"
|
|
104
|
+
"LaunchTemplateName": "my-template-for-auto-scaling",
|
|
105
105
|
"Version": "$Latest"
|
|
106
106
|
},
|
|
107
107
|
"MaxInstanceLifetime": 2592000,
|
|
@@ -125,8 +125,8 @@
|
|
|
125
125
|
"HealthCheckGracePeriod": 300,
|
|
126
126
|
"HealthCheckType": "ELB",
|
|
127
127
|
"LaunchTemplate": {
|
|
128
|
-
"
|
|
129
|
-
"Version": "$
|
|
128
|
+
"LaunchTemplateName": "my-template-for-auto-scaling",
|
|
129
|
+
"Version": "$Latest"
|
|
130
130
|
},
|
|
131
131
|
"MaxSize": 3,
|
|
132
132
|
"MinSize": 1,
|
|
@@ -1203,10 +1203,10 @@
|
|
|
1203
1203
|
{
|
|
1204
1204
|
"input": {
|
|
1205
1205
|
"AutoScalingGroupName": "my-auto-scaling-group",
|
|
1206
|
-
"
|
|
1207
|
-
"
|
|
1208
|
-
"
|
|
1209
|
-
"
|
|
1206
|
+
"DefaultResult": "CONTINUE",
|
|
1207
|
+
"HeartbeatTimeout": 300,
|
|
1208
|
+
"LifecycleHookName": "my-launch-lifecycle-hook",
|
|
1209
|
+
"LifecycleTransition": "autoscaling:EC2_INSTANCE_LAUNCHING"
|
|
1210
1210
|
},
|
|
1211
1211
|
"comments": {
|
|
1212
1212
|
"input": {
|
|
@@ -1214,9 +1214,9 @@
|
|
|
1214
1214
|
"output": {
|
|
1215
1215
|
}
|
|
1216
1216
|
},
|
|
1217
|
-
"description": "This example creates a lifecycle hook.",
|
|
1217
|
+
"description": "This example creates a lifecycle hook for instance launch.",
|
|
1218
1218
|
"id": "autoscaling-put-lifecycle-hook-1",
|
|
1219
|
-
"title": "To create a lifecycle hook"
|
|
1219
|
+
"title": "To create a launch lifecycle hook"
|
|
1220
1220
|
}
|
|
1221
1221
|
],
|
|
1222
1222
|
"PutNotificationConfiguration": [
|
|
@@ -1303,8 +1303,11 @@
|
|
|
1303
1303
|
{
|
|
1304
1304
|
"input": {
|
|
1305
1305
|
"AutoScalingGroupName": "my-auto-scaling-group",
|
|
1306
|
+
"InstanceReusePolicy": {
|
|
1307
|
+
"ReuseOnScaleIn": true
|
|
1308
|
+
},
|
|
1306
1309
|
"MinSize": 30,
|
|
1307
|
-
"PoolState": "
|
|
1310
|
+
"PoolState": "Hibernated"
|
|
1308
1311
|
},
|
|
1309
1312
|
"comments": {
|
|
1310
1313
|
"input": {
|
|
@@ -1312,9 +1315,9 @@
|
|
|
1312
1315
|
"output": {
|
|
1313
1316
|
}
|
|
1314
1317
|
},
|
|
1315
|
-
"description": "This example
|
|
1318
|
+
"description": "This example creates a warm pool for the specified Auto Scaling group.",
|
|
1316
1319
|
"id": "to-add-a-warm-pool-to-an-auto-scaling-group-1617818810383",
|
|
1317
|
-
"title": "To
|
|
1320
|
+
"title": "To create a warm pool for an Auto Scaling group"
|
|
1318
1321
|
}
|
|
1319
1322
|
],
|
|
1320
1323
|
"RecordLifecycleActionHeartbeat": [
|
|
@@ -1431,9 +1434,16 @@
|
|
|
1431
1434
|
{
|
|
1432
1435
|
"input": {
|
|
1433
1436
|
"AutoScalingGroupName": "my-auto-scaling-group",
|
|
1437
|
+
"DesiredConfiguration": {
|
|
1438
|
+
"LaunchTemplate": {
|
|
1439
|
+
"LaunchTemplateName": "my-template-for-auto-scaling",
|
|
1440
|
+
"Version": "$Latest"
|
|
1441
|
+
}
|
|
1442
|
+
},
|
|
1434
1443
|
"Preferences": {
|
|
1435
1444
|
"InstanceWarmup": 400,
|
|
1436
|
-
"MinHealthyPercentage":
|
|
1445
|
+
"MinHealthyPercentage": 90,
|
|
1446
|
+
"SkipMatching": true
|
|
1437
1447
|
}
|
|
1438
1448
|
},
|
|
1439
1449
|
"output": {
|
|
@@ -1490,37 +1500,12 @@
|
|
|
1490
1500
|
{
|
|
1491
1501
|
"input": {
|
|
1492
1502
|
"AutoScalingGroupName": "my-auto-scaling-group",
|
|
1493
|
-
"
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
"input": {
|
|
1497
|
-
},
|
|
1498
|
-
"output": {
|
|
1499
|
-
}
|
|
1500
|
-
},
|
|
1501
|
-
"description": "This example updates the launch configuration of the specified Auto Scaling group.",
|
|
1502
|
-
"id": "autoscaling-update-auto-scaling-group-1",
|
|
1503
|
-
"title": "To update the launch configuration"
|
|
1504
|
-
},
|
|
1505
|
-
{
|
|
1506
|
-
"input": {
|
|
1507
|
-
"AutoScalingGroupName": "my-auto-scaling-group",
|
|
1508
|
-
"MaxSize": 3,
|
|
1509
|
-
"MinSize": 1
|
|
1510
|
-
},
|
|
1511
|
-
"comments": {
|
|
1512
|
-
"input": {
|
|
1503
|
+
"LaunchTemplate": {
|
|
1504
|
+
"LaunchTemplateName": "my-template-for-auto-scaling",
|
|
1505
|
+
"Version": "2"
|
|
1513
1506
|
},
|
|
1514
|
-
"
|
|
1515
|
-
|
|
1516
|
-
},
|
|
1517
|
-
"description": "This example updates the minimum size and maximum size of the specified Auto Scaling group.",
|
|
1518
|
-
"id": "autoscaling-update-auto-scaling-group-2",
|
|
1519
|
-
"title": "To update the minimum and maximum size"
|
|
1520
|
-
},
|
|
1521
|
-
{
|
|
1522
|
-
"input": {
|
|
1523
|
-
"AutoScalingGroupName": "my-auto-scaling-group",
|
|
1507
|
+
"MaxSize": 5,
|
|
1508
|
+
"MinSize": 1,
|
|
1524
1509
|
"NewInstancesProtectedFromScaleIn": true
|
|
1525
1510
|
},
|
|
1526
1511
|
"comments": {
|
|
@@ -1529,9 +1514,9 @@
|
|
|
1529
1514
|
"output": {
|
|
1530
1515
|
}
|
|
1531
1516
|
},
|
|
1532
|
-
"description": "This example
|
|
1533
|
-
"id": "autoscaling-update-auto-scaling-group-
|
|
1534
|
-
"title": "To
|
|
1517
|
+
"description": "This example updates multiple properties at the same time.",
|
|
1518
|
+
"id": "autoscaling-update-auto-scaling-group-1",
|
|
1519
|
+
"title": "To update an Auto Scaling group"
|
|
1535
1520
|
}
|
|
1536
1521
|
]
|
|
1537
1522
|
}
|
|
@@ -664,7 +664,7 @@
|
|
|
664
664
|
"type": "structure",
|
|
665
665
|
"members": {
|
|
666
666
|
"AutoScalingNotificationTypes": {
|
|
667
|
-
"shape": "
|
|
667
|
+
"shape": "S4t"
|
|
668
668
|
}
|
|
669
669
|
}
|
|
670
670
|
}
|
|
@@ -740,10 +740,10 @@
|
|
|
740
740
|
}
|
|
741
741
|
},
|
|
742
742
|
"Preferences": {
|
|
743
|
-
"shape": "
|
|
743
|
+
"shape": "S55"
|
|
744
744
|
},
|
|
745
745
|
"DesiredConfiguration": {
|
|
746
|
-
"shape": "
|
|
746
|
+
"shape": "S5b"
|
|
747
747
|
}
|
|
748
748
|
}
|
|
749
749
|
}
|
|
@@ -833,7 +833,7 @@
|
|
|
833
833
|
"type": "structure",
|
|
834
834
|
"members": {
|
|
835
835
|
"LifecycleHookTypes": {
|
|
836
|
-
"shape": "
|
|
836
|
+
"shape": "S4t"
|
|
837
837
|
}
|
|
838
838
|
}
|
|
839
839
|
}
|
|
@@ -1039,7 +1039,7 @@
|
|
|
1039
1039
|
"PolicyType": {},
|
|
1040
1040
|
"AdjustmentType": {},
|
|
1041
1041
|
"MinAdjustmentStep": {
|
|
1042
|
-
"shape": "
|
|
1042
|
+
"shape": "S6b"
|
|
1043
1043
|
},
|
|
1044
1044
|
"MinAdjustmentMagnitude": {
|
|
1045
1045
|
"type": "integer"
|
|
@@ -1051,23 +1051,23 @@
|
|
|
1051
1051
|
"type": "integer"
|
|
1052
1052
|
},
|
|
1053
1053
|
"StepAdjustments": {
|
|
1054
|
-
"shape": "
|
|
1054
|
+
"shape": "S6e"
|
|
1055
1055
|
},
|
|
1056
1056
|
"MetricAggregationType": {},
|
|
1057
1057
|
"EstimatedInstanceWarmup": {
|
|
1058
1058
|
"type": "integer"
|
|
1059
1059
|
},
|
|
1060
1060
|
"Alarms": {
|
|
1061
|
-
"shape": "
|
|
1061
|
+
"shape": "S6i"
|
|
1062
1062
|
},
|
|
1063
1063
|
"TargetTrackingConfiguration": {
|
|
1064
|
-
"shape": "
|
|
1064
|
+
"shape": "S6k"
|
|
1065
1065
|
},
|
|
1066
1066
|
"Enabled": {
|
|
1067
1067
|
"type": "boolean"
|
|
1068
1068
|
},
|
|
1069
1069
|
"PredictiveScalingConfiguration": {
|
|
1070
|
-
"shape": "
|
|
1070
|
+
"shape": "S6y"
|
|
1071
1071
|
}
|
|
1072
1072
|
}
|
|
1073
1073
|
}
|
|
@@ -1102,7 +1102,7 @@
|
|
|
1102
1102
|
],
|
|
1103
1103
|
"members": {
|
|
1104
1104
|
"Activities": {
|
|
1105
|
-
"shape": "
|
|
1105
|
+
"shape": "S7p"
|
|
1106
1106
|
},
|
|
1107
1107
|
"NextToken": {}
|
|
1108
1108
|
}
|
|
@@ -1272,7 +1272,7 @@
|
|
|
1272
1272
|
"type": "structure",
|
|
1273
1273
|
"members": {
|
|
1274
1274
|
"Activities": {
|
|
1275
|
-
"shape": "
|
|
1275
|
+
"shape": "S7p"
|
|
1276
1276
|
}
|
|
1277
1277
|
}
|
|
1278
1278
|
}
|
|
@@ -1326,7 +1326,7 @@
|
|
|
1326
1326
|
"members": {
|
|
1327
1327
|
"AutoScalingGroupName": {},
|
|
1328
1328
|
"Metrics": {
|
|
1329
|
-
"shape": "
|
|
1329
|
+
"shape": "S8e"
|
|
1330
1330
|
}
|
|
1331
1331
|
}
|
|
1332
1332
|
}
|
|
@@ -1341,7 +1341,7 @@
|
|
|
1341
1341
|
"members": {
|
|
1342
1342
|
"AutoScalingGroupName": {},
|
|
1343
1343
|
"Metrics": {
|
|
1344
|
-
"shape": "
|
|
1344
|
+
"shape": "S8e"
|
|
1345
1345
|
},
|
|
1346
1346
|
"Granularity": {}
|
|
1347
1347
|
}
|
|
@@ -1369,7 +1369,7 @@
|
|
|
1369
1369
|
"type": "structure",
|
|
1370
1370
|
"members": {
|
|
1371
1371
|
"Activities": {
|
|
1372
|
-
"shape": "
|
|
1372
|
+
"shape": "S7p"
|
|
1373
1373
|
}
|
|
1374
1374
|
}
|
|
1375
1375
|
}
|
|
@@ -1413,7 +1413,7 @@
|
|
|
1413
1413
|
"type": "structure",
|
|
1414
1414
|
"members": {
|
|
1415
1415
|
"Activities": {
|
|
1416
|
-
"shape": "
|
|
1416
|
+
"shape": "S7p"
|
|
1417
1417
|
}
|
|
1418
1418
|
}
|
|
1419
1419
|
}
|
|
@@ -1458,13 +1458,13 @@
|
|
|
1458
1458
|
],
|
|
1459
1459
|
"members": {
|
|
1460
1460
|
"Timestamps": {
|
|
1461
|
-
"shape": "
|
|
1461
|
+
"shape": "S8q"
|
|
1462
1462
|
},
|
|
1463
1463
|
"Values": {
|
|
1464
|
-
"shape": "
|
|
1464
|
+
"shape": "S8r"
|
|
1465
1465
|
},
|
|
1466
1466
|
"MetricSpecification": {
|
|
1467
|
-
"shape": "
|
|
1467
|
+
"shape": "S70"
|
|
1468
1468
|
}
|
|
1469
1469
|
}
|
|
1470
1470
|
}
|
|
@@ -1477,10 +1477,10 @@
|
|
|
1477
1477
|
],
|
|
1478
1478
|
"members": {
|
|
1479
1479
|
"Timestamps": {
|
|
1480
|
-
"shape": "
|
|
1480
|
+
"shape": "S8q"
|
|
1481
1481
|
},
|
|
1482
1482
|
"Values": {
|
|
1483
|
-
"shape": "
|
|
1483
|
+
"shape": "S8r"
|
|
1484
1484
|
}
|
|
1485
1485
|
}
|
|
1486
1486
|
},
|
|
@@ -1528,7 +1528,7 @@
|
|
|
1528
1528
|
"AutoScalingGroupName": {},
|
|
1529
1529
|
"TopicARN": {},
|
|
1530
1530
|
"NotificationTypes": {
|
|
1531
|
-
"shape": "
|
|
1531
|
+
"shape": "S4t"
|
|
1532
1532
|
}
|
|
1533
1533
|
}
|
|
1534
1534
|
}
|
|
@@ -1546,7 +1546,7 @@
|
|
|
1546
1546
|
"PolicyType": {},
|
|
1547
1547
|
"AdjustmentType": {},
|
|
1548
1548
|
"MinAdjustmentStep": {
|
|
1549
|
-
"shape": "
|
|
1549
|
+
"shape": "S6b"
|
|
1550
1550
|
},
|
|
1551
1551
|
"MinAdjustmentMagnitude": {
|
|
1552
1552
|
"type": "integer"
|
|
@@ -1559,19 +1559,19 @@
|
|
|
1559
1559
|
},
|
|
1560
1560
|
"MetricAggregationType": {},
|
|
1561
1561
|
"StepAdjustments": {
|
|
1562
|
-
"shape": "
|
|
1562
|
+
"shape": "S6e"
|
|
1563
1563
|
},
|
|
1564
1564
|
"EstimatedInstanceWarmup": {
|
|
1565
1565
|
"type": "integer"
|
|
1566
1566
|
},
|
|
1567
1567
|
"TargetTrackingConfiguration": {
|
|
1568
|
-
"shape": "
|
|
1568
|
+
"shape": "S6k"
|
|
1569
1569
|
},
|
|
1570
1570
|
"Enabled": {
|
|
1571
1571
|
"type": "boolean"
|
|
1572
1572
|
},
|
|
1573
1573
|
"PredictiveScalingConfiguration": {
|
|
1574
|
-
"shape": "
|
|
1574
|
+
"shape": "S6y"
|
|
1575
1575
|
}
|
|
1576
1576
|
}
|
|
1577
1577
|
},
|
|
@@ -1581,7 +1581,7 @@
|
|
|
1581
1581
|
"members": {
|
|
1582
1582
|
"PolicyARN": {},
|
|
1583
1583
|
"Alarms": {
|
|
1584
|
-
"shape": "
|
|
1584
|
+
"shape": "S6i"
|
|
1585
1585
|
}
|
|
1586
1586
|
}
|
|
1587
1587
|
}
|
|
@@ -1633,7 +1633,10 @@
|
|
|
1633
1633
|
"MinSize": {
|
|
1634
1634
|
"type": "integer"
|
|
1635
1635
|
},
|
|
1636
|
-
"PoolState": {}
|
|
1636
|
+
"PoolState": {},
|
|
1637
|
+
"InstanceReusePolicy": {
|
|
1638
|
+
"shape": "S4l"
|
|
1639
|
+
}
|
|
1637
1640
|
}
|
|
1638
1641
|
},
|
|
1639
1642
|
"output": {
|
|
@@ -1664,7 +1667,7 @@
|
|
|
1664
1667
|
},
|
|
1665
1668
|
"ResumeProcesses": {
|
|
1666
1669
|
"input": {
|
|
1667
|
-
"shape": "
|
|
1670
|
+
"shape": "S93"
|
|
1668
1671
|
}
|
|
1669
1672
|
},
|
|
1670
1673
|
"SetDesiredCapacity": {
|
|
@@ -1735,10 +1738,10 @@
|
|
|
1735
1738
|
"AutoScalingGroupName": {},
|
|
1736
1739
|
"Strategy": {},
|
|
1737
1740
|
"DesiredConfiguration": {
|
|
1738
|
-
"shape": "
|
|
1741
|
+
"shape": "S5b"
|
|
1739
1742
|
},
|
|
1740
1743
|
"Preferences": {
|
|
1741
|
-
"shape": "
|
|
1744
|
+
"shape": "S55"
|
|
1742
1745
|
}
|
|
1743
1746
|
}
|
|
1744
1747
|
},
|
|
@@ -1752,7 +1755,7 @@
|
|
|
1752
1755
|
},
|
|
1753
1756
|
"SuspendProcesses": {
|
|
1754
1757
|
"input": {
|
|
1755
|
-
"shape": "
|
|
1758
|
+
"shape": "S93"
|
|
1756
1759
|
}
|
|
1757
1760
|
},
|
|
1758
1761
|
"TerminateInstanceInAutoScalingGroup": {
|
|
@@ -1774,7 +1777,7 @@
|
|
|
1774
1777
|
"type": "structure",
|
|
1775
1778
|
"members": {
|
|
1776
1779
|
"Activity": {
|
|
1777
|
-
"shape": "
|
|
1780
|
+
"shape": "S7q"
|
|
1778
1781
|
}
|
|
1779
1782
|
}
|
|
1780
1783
|
}
|
|
@@ -2219,14 +2222,25 @@
|
|
|
2219
2222
|
"type": "integer"
|
|
2220
2223
|
},
|
|
2221
2224
|
"PoolState": {},
|
|
2222
|
-
"Status": {}
|
|
2225
|
+
"Status": {},
|
|
2226
|
+
"InstanceReusePolicy": {
|
|
2227
|
+
"shape": "S4l"
|
|
2228
|
+
}
|
|
2229
|
+
}
|
|
2230
|
+
},
|
|
2231
|
+
"S4l": {
|
|
2232
|
+
"type": "structure",
|
|
2233
|
+
"members": {
|
|
2234
|
+
"ReuseOnScaleIn": {
|
|
2235
|
+
"type": "boolean"
|
|
2236
|
+
}
|
|
2223
2237
|
}
|
|
2224
2238
|
},
|
|
2225
|
-
"
|
|
2239
|
+
"S4t": {
|
|
2226
2240
|
"type": "list",
|
|
2227
2241
|
"member": {}
|
|
2228
2242
|
},
|
|
2229
|
-
"
|
|
2243
|
+
"S55": {
|
|
2230
2244
|
"type": "structure",
|
|
2231
2245
|
"members": {
|
|
2232
2246
|
"MinHealthyPercentage": {
|
|
@@ -2249,7 +2263,7 @@
|
|
|
2249
2263
|
}
|
|
2250
2264
|
}
|
|
2251
2265
|
},
|
|
2252
|
-
"
|
|
2266
|
+
"S5b": {
|
|
2253
2267
|
"type": "structure",
|
|
2254
2268
|
"members": {
|
|
2255
2269
|
"LaunchTemplate": {
|
|
@@ -2260,11 +2274,11 @@
|
|
|
2260
2274
|
}
|
|
2261
2275
|
}
|
|
2262
2276
|
},
|
|
2263
|
-
"
|
|
2277
|
+
"S6b": {
|
|
2264
2278
|
"type": "integer",
|
|
2265
2279
|
"deprecated": true
|
|
2266
2280
|
},
|
|
2267
|
-
"
|
|
2281
|
+
"S6e": {
|
|
2268
2282
|
"type": "list",
|
|
2269
2283
|
"member": {
|
|
2270
2284
|
"type": "structure",
|
|
@@ -2284,7 +2298,7 @@
|
|
|
2284
2298
|
}
|
|
2285
2299
|
}
|
|
2286
2300
|
},
|
|
2287
|
-
"
|
|
2301
|
+
"S6i": {
|
|
2288
2302
|
"type": "list",
|
|
2289
2303
|
"member": {
|
|
2290
2304
|
"type": "structure",
|
|
@@ -2294,7 +2308,7 @@
|
|
|
2294
2308
|
}
|
|
2295
2309
|
}
|
|
2296
2310
|
},
|
|
2297
|
-
"
|
|
2311
|
+
"S6k": {
|
|
2298
2312
|
"type": "structure",
|
|
2299
2313
|
"required": [
|
|
2300
2314
|
"TargetValue"
|
|
@@ -2321,7 +2335,7 @@
|
|
|
2321
2335
|
"MetricName": {},
|
|
2322
2336
|
"Namespace": {},
|
|
2323
2337
|
"Dimensions": {
|
|
2324
|
-
"shape": "
|
|
2338
|
+
"shape": "S6q"
|
|
2325
2339
|
},
|
|
2326
2340
|
"Statistic": {},
|
|
2327
2341
|
"Unit": {}
|
|
@@ -2335,7 +2349,7 @@
|
|
|
2335
2349
|
}
|
|
2336
2350
|
}
|
|
2337
2351
|
},
|
|
2338
|
-
"
|
|
2352
|
+
"S6q": {
|
|
2339
2353
|
"type": "list",
|
|
2340
2354
|
"member": {
|
|
2341
2355
|
"type": "structure",
|
|
@@ -2349,7 +2363,7 @@
|
|
|
2349
2363
|
}
|
|
2350
2364
|
}
|
|
2351
2365
|
},
|
|
2352
|
-
"
|
|
2366
|
+
"S6y": {
|
|
2353
2367
|
"type": "structure",
|
|
2354
2368
|
"required": [
|
|
2355
2369
|
"MetricSpecifications"
|
|
@@ -2358,7 +2372,7 @@
|
|
|
2358
2372
|
"MetricSpecifications": {
|
|
2359
2373
|
"type": "list",
|
|
2360
2374
|
"member": {
|
|
2361
|
-
"shape": "
|
|
2375
|
+
"shape": "S70"
|
|
2362
2376
|
}
|
|
2363
2377
|
},
|
|
2364
2378
|
"Mode": {},
|
|
@@ -2371,7 +2385,7 @@
|
|
|
2371
2385
|
}
|
|
2372
2386
|
}
|
|
2373
2387
|
},
|
|
2374
|
-
"
|
|
2388
|
+
"S70": {
|
|
2375
2389
|
"type": "structure",
|
|
2376
2390
|
"required": [
|
|
2377
2391
|
"TargetValue"
|
|
@@ -2417,7 +2431,7 @@
|
|
|
2417
2431
|
],
|
|
2418
2432
|
"members": {
|
|
2419
2433
|
"MetricDataQueries": {
|
|
2420
|
-
"shape": "
|
|
2434
|
+
"shape": "S78"
|
|
2421
2435
|
}
|
|
2422
2436
|
}
|
|
2423
2437
|
},
|
|
@@ -2428,7 +2442,7 @@
|
|
|
2428
2442
|
],
|
|
2429
2443
|
"members": {
|
|
2430
2444
|
"MetricDataQueries": {
|
|
2431
|
-
"shape": "
|
|
2445
|
+
"shape": "S78"
|
|
2432
2446
|
}
|
|
2433
2447
|
}
|
|
2434
2448
|
},
|
|
@@ -2439,13 +2453,13 @@
|
|
|
2439
2453
|
],
|
|
2440
2454
|
"members": {
|
|
2441
2455
|
"MetricDataQueries": {
|
|
2442
|
-
"shape": "
|
|
2456
|
+
"shape": "S78"
|
|
2443
2457
|
}
|
|
2444
2458
|
}
|
|
2445
2459
|
}
|
|
2446
2460
|
}
|
|
2447
2461
|
},
|
|
2448
|
-
"
|
|
2462
|
+
"S78": {
|
|
2449
2463
|
"type": "list",
|
|
2450
2464
|
"member": {
|
|
2451
2465
|
"type": "structure",
|
|
@@ -2472,7 +2486,7 @@
|
|
|
2472
2486
|
"Namespace": {},
|
|
2473
2487
|
"MetricName": {},
|
|
2474
2488
|
"Dimensions": {
|
|
2475
|
-
"shape": "
|
|
2489
|
+
"shape": "S6q"
|
|
2476
2490
|
}
|
|
2477
2491
|
}
|
|
2478
2492
|
},
|
|
@@ -2487,13 +2501,13 @@
|
|
|
2487
2501
|
}
|
|
2488
2502
|
}
|
|
2489
2503
|
},
|
|
2490
|
-
"
|
|
2504
|
+
"S7p": {
|
|
2491
2505
|
"type": "list",
|
|
2492
2506
|
"member": {
|
|
2493
|
-
"shape": "
|
|
2507
|
+
"shape": "S7q"
|
|
2494
2508
|
}
|
|
2495
2509
|
},
|
|
2496
|
-
"
|
|
2510
|
+
"S7q": {
|
|
2497
2511
|
"type": "structure",
|
|
2498
2512
|
"required": [
|
|
2499
2513
|
"ActivityId",
|
|
@@ -2523,23 +2537,23 @@
|
|
|
2523
2537
|
"AutoScalingGroupARN": {}
|
|
2524
2538
|
}
|
|
2525
2539
|
},
|
|
2526
|
-
"
|
|
2540
|
+
"S8e": {
|
|
2527
2541
|
"type": "list",
|
|
2528
2542
|
"member": {}
|
|
2529
2543
|
},
|
|
2530
|
-
"
|
|
2544
|
+
"S8q": {
|
|
2531
2545
|
"type": "list",
|
|
2532
2546
|
"member": {
|
|
2533
2547
|
"type": "timestamp"
|
|
2534
2548
|
}
|
|
2535
2549
|
},
|
|
2536
|
-
"
|
|
2550
|
+
"S8r": {
|
|
2537
2551
|
"type": "list",
|
|
2538
2552
|
"member": {
|
|
2539
2553
|
"type": "double"
|
|
2540
2554
|
}
|
|
2541
2555
|
},
|
|
2542
|
-
"
|
|
2556
|
+
"S93": {
|
|
2543
2557
|
"type": "structure",
|
|
2544
2558
|
"required": [
|
|
2545
2559
|
"AutoScalingGroupName"
|