Skip to content

Commit

Permalink
Updates SDK to v2.1035.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Nov 23, 2021
1 parent faee315 commit 850fc8c
Show file tree
Hide file tree
Showing 62 changed files with 8,039 additions and 4,462 deletions.
67 changes: 67 additions & 0 deletions .changes/2.1035.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
[
{
"type": "feature",
"category": "Backup",
"description": "This release adds new opt-in settings for advanced features for DynamoDB backups"
},
{
"type": "feature",
"category": "DynamoDB",
"description": "DynamoDB PartiQL now supports ReturnConsumedCapacity, which returns capacity units consumed by PartiQL APIs if the request specified returnConsumedCapacity parameter. PartiQL APIs include ExecuteStatement, BatchExecuteStatement, and ExecuteTransaction."
},
{
"type": "feature",
"category": "EC2",
"description": "This release adds a new parameter ipv6Native to the allow creation of IPv6-only subnets using the CreateSubnet operation, and the operation ModifySubnetAttribute includes new parameters to modify subnet attributes to use resource-based naming and enable DNS resolutions for Private DNS name."
},
{
"type": "feature",
"category": "ElastiCache",
"description": "Adding support for r6gd instances for Redis with data tiering. In a cluster with data tiering enabled, when available memory capacity is exhausted, the least recently used data is automatically tiered to solid state drives for cost-effective capacity scaling with minimal performance impact."
},
{
"type": "feature",
"category": "IoTWireless",
"description": "Two new APIs, GetNetworkAnalyzerConfiguration and UpdateNetworkAnalyzerConfiguration, are added for the newly released Network Analyzer feature which enables customers to view real-time frame information and logs from LoRaWAN devices and gateways."
},
{
"type": "feature",
"category": "Iot",
"description": "This release introduces a new feature, Managed Job Template, for AWS IoT Jobs Service. Customers can now use service provided managed job templates to easily create jobs for supported standard job actions."
},
{
"type": "feature",
"category": "IotDeviceAdvisor",
"description": "This release introduces a new feature for Device Advisor: ability to execute multiple test suites in parallel for given customer account. You can use GetEndpoint API to get the device-level test endpoint and call StartSuiteRun with \"parallelRun=true\" to run suites in parallel."
},
{
"type": "feature",
"category": "Lambda",
"description": "Release Lambda event source filtering for SQS, Kinesis Streams, and DynamoDB Streams."
},
{
"type": "feature",
"category": "OpenSearch",
"description": "This release adds an optional parameter dry-run for the UpdateDomainConfig API to perform basic validation checks, and detect the deployment type that will be required for the configuration change, without actually applying the change."
},
{
"type": "feature",
"category": "RDS",
"description": "Adds support for Multi-AZ DB clusters for RDS for MySQL and RDS for PostgreSQL."
},
{
"type": "feature",
"category": "Redshift",
"description": "This release adds support for reserved node exchange with restore/resize"
},
{
"type": "feature",
"category": "S3",
"description": "Introduce two new Filters to S3 Lifecycle configurations - ObjectSizeGreaterThan and ObjectSizeLessThan. Introduce a new way to trigger actions on noncurrent versions by providing the number of newer noncurrent versions along with noncurrent days."
},
{
"type": "feature",
"category": "SQS",
"description": "Amazon SQS adds a new queue attribute, SqsManagedSseEnabled, which enables server-side queue encryption using SQS owned encryption keys."
}
]
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,22 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1034.0-->
<!--LATEST=2.1035.0-->
<!--ENTRYINSERT-->

## 2.1035.0
* feature: Backup: This release adds new opt-in settings for advanced features for DynamoDB backups
* feature: DynamoDB: DynamoDB PartiQL now supports ReturnConsumedCapacity, which returns capacity units consumed by PartiQL APIs if the request specified returnConsumedCapacity parameter. PartiQL APIs include ExecuteStatement, BatchExecuteStatement, and ExecuteTransaction.
* feature: EC2: This release adds a new parameter ipv6Native to the allow creation of IPv6-only subnets using the CreateSubnet operation, and the operation ModifySubnetAttribute includes new parameters to modify subnet attributes to use resource-based naming and enable DNS resolutions for Private DNS name.
* feature: ElastiCache: Adding support for r6gd instances for Redis with data tiering. In a cluster with data tiering enabled, when available memory capacity is exhausted, the least recently used data is automatically tiered to solid state drives for cost-effective capacity scaling with minimal performance impact.
* feature: IoTWireless: Two new APIs, GetNetworkAnalyzerConfiguration and UpdateNetworkAnalyzerConfiguration, are added for the newly released Network Analyzer feature which enables customers to view real-time frame information and logs from LoRaWAN devices and gateways.
* feature: Iot: This release introduces a new feature, Managed Job Template, for AWS IoT Jobs Service. Customers can now use service provided managed job templates to easily create jobs for supported standard job actions.
* feature: IotDeviceAdvisor: This release introduces a new feature for Device Advisor: ability to execute multiple test suites in parallel for given customer account. You can use GetEndpoint API to get the device-level test endpoint and call StartSuiteRun with "parallelRun=true" to run suites in parallel.
* feature: Lambda: Release Lambda event source filtering for SQS, Kinesis Streams, and DynamoDB Streams.
* feature: OpenSearch: This release adds an optional parameter dry-run for the UpdateDomainConfig API to perform basic validation checks, and detect the deployment type that will be required for the configuration change, without actually applying the change.
* feature: RDS: Adds support for Multi-AZ DB clusters for RDS for MySQL and RDS for PostgreSQL.
* feature: Redshift: This release adds support for reserved node exchange with restore/resize
* feature: S3: Introduce two new Filters to S3 Lifecycle configurations - ObjectSizeGreaterThan and ObjectSizeLessThan. Introduce a new way to trigger actions on noncurrent versions by providing the number of newer noncurrent versions along with noncurrent days.
* feature: SQS: Amazon SQS adds a new queue attribute, SqsManagedSseEnabled, which enables server-side queue encryption using SQS owned encryption keys.

## 2.1034.0
* feature: Braket: This release adds support for Amazon Braket Hybrid Jobs.
* feature: ChimeSDKMeetings: Added new APIs for enabling Echo Reduction with Voice Focus.
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.1034.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1035.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
51 changes: 32 additions & 19 deletions apis/backup-2018-11-15.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -672,6 +672,9 @@
"members": {
"ResourceTypeOptInPreference": {
"shape": "S2z"
},
"ResourceTypeManagementPreference": {
"shape": "S31"
}
}
}
Expand All @@ -697,7 +700,7 @@
"type": "structure",
"members": {
"ReportJob": {
"shape": "S34"
"shape": "S35"
}
}
}
Expand All @@ -723,7 +726,7 @@
"type": "structure",
"members": {
"ReportPlan": {
"shape": "S38"
"shape": "S39"
}
}
}
Expand Down Expand Up @@ -844,7 +847,7 @@
"type": "structure",
"members": {
"BackupPlan": {
"shape": "S3i"
"shape": "S3j"
},
"BackupPlanId": {},
"BackupPlanArn": {},
Expand Down Expand Up @@ -883,7 +886,7 @@
"type": "structure",
"members": {
"BackupPlan": {
"shape": "S3i"
"shape": "S3j"
}
}
}
Expand All @@ -909,7 +912,7 @@
"type": "structure",
"members": {
"BackupPlanDocument": {
"shape": "S3i"
"shape": "S3j"
}
}
}
Expand Down Expand Up @@ -1003,7 +1006,7 @@
"BackupVaultArn": {},
"SNSTopicArn": {},
"BackupVaultEvents": {
"shape": "S3w"
"shape": "S3x"
}
}
},
Expand Down Expand Up @@ -1037,7 +1040,7 @@
"BackupVaultArn": {},
"RecoveryPointArn": {},
"RestoreMetadata": {
"shape": "S40"
"shape": "S41"
}
}
},
Expand Down Expand Up @@ -1228,7 +1231,7 @@
"BackupPlanVersionsList": {
"type": "list",
"member": {
"shape": "S4h"
"shape": "S4i"
}
}
}
Expand Down Expand Up @@ -1266,7 +1269,7 @@
"BackupPlansList": {
"type": "list",
"member": {
"shape": "S4h"
"shape": "S4i"
}
}
}
Expand Down Expand Up @@ -1720,7 +1723,7 @@
"ReportJobs": {
"type": "list",
"member": {
"shape": "S34"
"shape": "S35"
}
},
"NextToken": {}
Expand Down Expand Up @@ -1752,7 +1755,7 @@
"ReportPlans": {
"type": "list",
"member": {
"shape": "S38"
"shape": "S39"
}
},
"NextToken": {}
Expand Down Expand Up @@ -1937,7 +1940,7 @@
},
"SNSTopicArn": {},
"BackupVaultEvents": {
"shape": "S3w"
"shape": "S3x"
}
}
},
Expand Down Expand Up @@ -2066,7 +2069,7 @@
"members": {
"RecoveryPointArn": {},
"Metadata": {
"shape": "S40"
"shape": "S41"
},
"IamRoleArn": {},
"IdempotencyToken": {},
Expand Down Expand Up @@ -2279,6 +2282,9 @@
"members": {
"ResourceTypeOptInPreference": {
"shape": "S2z"
},
"ResourceTypeManagementPreference": {
"shape": "S31"
}
}
}
Expand Down Expand Up @@ -2619,7 +2625,14 @@
"type": "boolean"
}
},
"S34": {
"S31": {
"type": "map",
"key": {},
"value": {
"type": "boolean"
}
},
"S35": {
"type": "structure",
"members": {
"ReportJobId": {},
Expand All @@ -2644,7 +2657,7 @@
}
}
},
"S38": {
"S39": {
"type": "structure",
"members": {
"ReportPlanArn": {},
Expand All @@ -2668,7 +2681,7 @@
}
}
},
"S3i": {
"S3j": {
"type": "structure",
"required": [
"BackupPlanName",
Expand Down Expand Up @@ -2715,17 +2728,17 @@
}
}
},
"S3w": {
"S3x": {
"type": "list",
"member": {}
},
"S40": {
"S41": {
"type": "map",
"key": {},
"value": {},
"sensitive": true
},
"S4h": {
"S4i": {
"type": "structure",
"members": {
"BackupPlanArn": {},
Expand Down
Loading

0 comments on commit 850fc8c

Please sign in to comment.