Skip to content

Commit c02274c

Browse files
author
awstools
committed
Updates SDK to v2.1081.0
1 parent ece688e commit c02274c

32 files changed

+4573
-1582
lines changed

.changes/2.1081.0.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "AutoScaling",
5+
"description": "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."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "DataBrew",
10+
"description": "This AWS Glue Databrew release adds feature to merge job outputs into a max number of files for S3 File output type."
11+
},
12+
{
13+
"type": "feature",
14+
"category": "FMS",
15+
"description": "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."
16+
},
17+
{
18+
"type": "feature",
19+
"category": "Lightsail",
20+
"description": "This release adds support to delete and create Lightsail default key pairs that you can use with Lightsail instances."
21+
},
22+
{
23+
"type": "feature",
24+
"category": "S3",
25+
"description": "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"
26+
},
27+
{
28+
"type": "feature",
29+
"category": "S3Control",
30+
"description": "Amazon S3 Batch Operations adds support for new integrity checking capabilities in Amazon S3."
31+
},
32+
{
33+
"type": "feature",
34+
"category": "Transfer",
35+
"description": "Support automatic pagination when listing AWS Transfer Family resources."
36+
}
37+
]

CHANGELOG.md

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

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+
514
## 2.1080.0
615
* feature: Lambda: Lambda releases .NET 6 managed runtime to be available in all commercial regions.
716
* feature: Textract: Added support for merged cells and column header for table response.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
2929
To use the SDK in the browser, simply add the following script tag to your
3030
HTML pages:
3131

32-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1080.0.min.js"></script>
32+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1081.0.min.js"></script>
3333

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

apis/autoscaling-2011-01-01.examples.json

Lines changed: 31 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
"input": {
102102
"AutoScalingGroupName": "my-auto-scaling-group",
103103
"LaunchTemplate": {
104-
"LaunchTemplateId": "lt-0a20c965061f64abc",
104+
"LaunchTemplateName": "my-template-for-auto-scaling",
105105
"Version": "$Latest"
106106
},
107107
"MaxInstanceLifetime": 2592000,
@@ -125,8 +125,8 @@
125125
"HealthCheckGracePeriod": 300,
126126
"HealthCheckType": "ELB",
127127
"LaunchTemplate": {
128-
"LaunchTemplateId": "lt-0a20c965061f64abc",
129-
"Version": "$Default"
128+
"LaunchTemplateName": "my-template-for-auto-scaling",
129+
"Version": "$Latest"
130130
},
131131
"MaxSize": 3,
132132
"MinSize": 1,
@@ -1203,20 +1203,20 @@
12031203
{
12041204
"input": {
12051205
"AutoScalingGroupName": "my-auto-scaling-group",
1206-
"LifecycleHookName": "my-lifecycle-hook",
1207-
"LifecycleTransition": "autoscaling:EC2_INSTANCE_LAUNCHING",
1208-
"NotificationTargetARN": "arn:aws:sns:us-west-2:123456789012:my-sns-topic --role-arn",
1209-
"RoleARN": "arn:aws:iam::123456789012:role/my-auto-scaling-role"
1206+
"DefaultResult": "CONTINUE",
1207+
"HeartbeatTimeout": 300,
1208+
"LifecycleHookName": "my-launch-lifecycle-hook",
1209+
"LifecycleTransition": "autoscaling:EC2_INSTANCE_LAUNCHING"
12101210
},
12111211
"comments": {
12121212
"input": {
12131213
},
12141214
"output": {
12151215
}
12161216
},
1217-
"description": "This example creates a lifecycle hook.",
1217+
"description": "This example creates a lifecycle hook for instance launch.",
12181218
"id": "autoscaling-put-lifecycle-hook-1",
1219-
"title": "To create a lifecycle hook"
1219+
"title": "To create a launch lifecycle hook"
12201220
}
12211221
],
12221222
"PutNotificationConfiguration": [
@@ -1303,18 +1303,21 @@
13031303
{
13041304
"input": {
13051305
"AutoScalingGroupName": "my-auto-scaling-group",
1306+
"InstanceReusePolicy": {
1307+
"ReuseOnScaleIn": true
1308+
},
13061309
"MinSize": 30,
1307-
"PoolState": "Stopped"
1310+
"PoolState": "Hibernated"
13081311
},
13091312
"comments": {
13101313
"input": {
13111314
},
13121315
"output": {
13131316
}
13141317
},
1315-
"description": "This example adds a warm pool to the specified Auto Scaling group.",
1318+
"description": "This example creates a warm pool for the specified Auto Scaling group.",
13161319
"id": "to-add-a-warm-pool-to-an-auto-scaling-group-1617818810383",
1317-
"title": "To add a warm pool to an Auto Scaling group"
1320+
"title": "To create a warm pool for an Auto Scaling group"
13181321
}
13191322
],
13201323
"RecordLifecycleActionHeartbeat": [
@@ -1431,9 +1434,16 @@
14311434
{
14321435
"input": {
14331436
"AutoScalingGroupName": "my-auto-scaling-group",
1437+
"DesiredConfiguration": {
1438+
"LaunchTemplate": {
1439+
"LaunchTemplateName": "my-template-for-auto-scaling",
1440+
"Version": "$Latest"
1441+
}
1442+
},
14341443
"Preferences": {
14351444
"InstanceWarmup": 400,
1436-
"MinHealthyPercentage": 50
1445+
"MinHealthyPercentage": 90,
1446+
"SkipMatching": true
14371447
}
14381448
},
14391449
"output": {
@@ -1490,37 +1500,12 @@
14901500
{
14911501
"input": {
14921502
"AutoScalingGroupName": "my-auto-scaling-group",
1493-
"LaunchConfigurationName": "new-launch-config"
1494-
},
1495-
"comments": {
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"
15131506
},
1514-
"output": {
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,
15241509
"NewInstancesProtectedFromScaleIn": true
15251510
},
15261511
"comments": {
@@ -1529,9 +1514,9 @@
15291514
"output": {
15301515
}
15311516
},
1532-
"description": "This example enables instance protection for the specified Auto Scaling group.",
1533-
"id": "autoscaling-update-auto-scaling-group-3",
1534-
"title": "To enable instance protection"
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"
15351520
}
15361521
]
15371522
}

0 commit comments

Comments
 (0)