Skip to content

Commit

Permalink
Updates SDK to v2.1081.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Feb 24, 2022
1 parent ece688e commit c02274c
Show file tree
Hide file tree
Showing 32 changed files with 4,573 additions and 1,582 deletions.
37 changes: 37 additions & 0 deletions .changes/2.1081.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[
{
"type": "feature",
"category": "AutoScaling",
"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."
},
{
"type": "feature",
"category": "DataBrew",
"description": "This AWS Glue Databrew release adds feature to merge job outputs into a max number of files for S3 File output type."
},
{
"type": "feature",
"category": "FMS",
"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."
},
{
"type": "feature",
"category": "Lightsail",
"description": "This release adds support to delete and create Lightsail default key pairs that you can use with Lightsail instances."
},
{
"type": "feature",
"category": "S3",
"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"
},
{
"type": "feature",
"category": "S3Control",
"description": "Amazon S3 Batch Operations adds support for new integrity checking capabilities in Amazon S3."
},
{
"type": "feature",
"category": "Transfer",
"description": "Support automatic pagination when listing AWS Transfer Family resources."
}
]
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1080.0-->
<!--LATEST=2.1081.0-->
<!--ENTRYINSERT-->

## 2.1081.0
* 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.
* feature: DataBrew: This AWS Glue Databrew release adds feature to merge job outputs into a max number of files for S3 File output type.
* 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.
* feature: Lightsail: This release adds support to delete and create Lightsail default key pairs that you can use with Lightsail instances.
* 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
* feature: S3Control: Amazon S3 Batch Operations adds support for new integrity checking capabilities in Amazon S3.
* feature: Transfer: Support automatic pagination when listing AWS Transfer Family resources.

## 2.1080.0
* feature: Lambda: Lambda releases .NET 6 managed runtime to be available in all commercial regions.
* feature: Textract: Added support for merged cells and column header for table response.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
To use the SDK in the browser, simply add the following script tag to your
HTML pages:

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

You can also build a custom browser SDK with your specified set of AWS services.
This can allow you to reduce the SDK's size, specify different API versions of
Expand Down
77 changes: 31 additions & 46 deletions apis/autoscaling-2011-01-01.examples.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
"input": {
"AutoScalingGroupName": "my-auto-scaling-group",
"LaunchTemplate": {
"LaunchTemplateId": "lt-0a20c965061f64abc",
"LaunchTemplateName": "my-template-for-auto-scaling",
"Version": "$Latest"
},
"MaxInstanceLifetime": 2592000,
Expand All @@ -125,8 +125,8 @@
"HealthCheckGracePeriod": 300,
"HealthCheckType": "ELB",
"LaunchTemplate": {
"LaunchTemplateId": "lt-0a20c965061f64abc",
"Version": "$Default"
"LaunchTemplateName": "my-template-for-auto-scaling",
"Version": "$Latest"
},
"MaxSize": 3,
"MinSize": 1,
Expand Down Expand Up @@ -1203,20 +1203,20 @@
{
"input": {
"AutoScalingGroupName": "my-auto-scaling-group",
"LifecycleHookName": "my-lifecycle-hook",
"LifecycleTransition": "autoscaling:EC2_INSTANCE_LAUNCHING",
"NotificationTargetARN": "arn:aws:sns:us-west-2:123456789012:my-sns-topic --role-arn",
"RoleARN": "arn:aws:iam::123456789012:role/my-auto-scaling-role"
"DefaultResult": "CONTINUE",
"HeartbeatTimeout": 300,
"LifecycleHookName": "my-launch-lifecycle-hook",
"LifecycleTransition": "autoscaling:EC2_INSTANCE_LAUNCHING"
},
"comments": {
"input": {
},
"output": {
}
},
"description": "This example creates a lifecycle hook.",
"description": "This example creates a lifecycle hook for instance launch.",
"id": "autoscaling-put-lifecycle-hook-1",
"title": "To create a lifecycle hook"
"title": "To create a launch lifecycle hook"
}
],
"PutNotificationConfiguration": [
Expand Down Expand Up @@ -1303,18 +1303,21 @@
{
"input": {
"AutoScalingGroupName": "my-auto-scaling-group",
"InstanceReusePolicy": {
"ReuseOnScaleIn": true
},
"MinSize": 30,
"PoolState": "Stopped"
"PoolState": "Hibernated"
},
"comments": {
"input": {
},
"output": {
}
},
"description": "This example adds a warm pool to the specified Auto Scaling group.",
"description": "This example creates a warm pool for the specified Auto Scaling group.",
"id": "to-add-a-warm-pool-to-an-auto-scaling-group-1617818810383",
"title": "To add a warm pool to an Auto Scaling group"
"title": "To create a warm pool for an Auto Scaling group"
}
],
"RecordLifecycleActionHeartbeat": [
Expand Down Expand Up @@ -1431,9 +1434,16 @@
{
"input": {
"AutoScalingGroupName": "my-auto-scaling-group",
"DesiredConfiguration": {
"LaunchTemplate": {
"LaunchTemplateName": "my-template-for-auto-scaling",
"Version": "$Latest"
}
},
"Preferences": {
"InstanceWarmup": 400,
"MinHealthyPercentage": 50
"MinHealthyPercentage": 90,
"SkipMatching": true
}
},
"output": {
Expand Down Expand Up @@ -1490,37 +1500,12 @@
{
"input": {
"AutoScalingGroupName": "my-auto-scaling-group",
"LaunchConfigurationName": "new-launch-config"
},
"comments": {
"input": {
},
"output": {
}
},
"description": "This example updates the launch configuration of the specified Auto Scaling group.",
"id": "autoscaling-update-auto-scaling-group-1",
"title": "To update the launch configuration"
},
{
"input": {
"AutoScalingGroupName": "my-auto-scaling-group",
"MaxSize": 3,
"MinSize": 1
},
"comments": {
"input": {
"LaunchTemplate": {
"LaunchTemplateName": "my-template-for-auto-scaling",
"Version": "2"
},
"output": {
}
},
"description": "This example updates the minimum size and maximum size of the specified Auto Scaling group.",
"id": "autoscaling-update-auto-scaling-group-2",
"title": "To update the minimum and maximum size"
},
{
"input": {
"AutoScalingGroupName": "my-auto-scaling-group",
"MaxSize": 5,
"MinSize": 1,
"NewInstancesProtectedFromScaleIn": true
},
"comments": {
Expand All @@ -1529,9 +1514,9 @@
"output": {
}
},
"description": "This example enables instance protection for the specified Auto Scaling group.",
"id": "autoscaling-update-auto-scaling-group-3",
"title": "To enable instance protection"
"description": "This example updates multiple properties at the same time.",
"id": "autoscaling-update-auto-scaling-group-1",
"title": "To update an Auto Scaling group"
}
]
}
Expand Down
Loading

0 comments on commit c02274c

Please sign in to comment.