Skip to content

Commit

Permalink
Updates SDK to v2.1369.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed May 1, 2023
1 parent 543052d commit 9e544e5
Show file tree
Hide file tree
Showing 17 changed files with 775 additions and 228 deletions.
17 changes: 17 additions & 0 deletions .changes/2.1369.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{
"type": "bugfix",
"category": "SQS",
"description": "add queryCompatibility fix to JSON protocol"
},
{
"type": "feature",
"category": "ComputeOptimizer",
"description": "support for tag filtering within compute optimizer. ability to filter recommendation results by tag and tag key value pairs. ability to filter by inferred workload type added."
},
{
"type": "feature",
"category": "KMS",
"description": "This release makes the NitroEnclave request parameter Recipient and the response field for CiphertextForRecipient available in AWS SDKs. It also adds the regex pattern for CloudHsmClusterId validation."
}
]
5 changes: 0 additions & 5 deletions .changes/next-release/bugfix-SQS-e1c1ffea.json

This file was deleted.

7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1368.0-->
<!--LATEST=2.1369.0-->
<!--ENTRYINSERT-->

## 2.1369.0
* bugfix: SQS: add queryCompatibility fix to JSON protocol
* feature: ComputeOptimizer: support for tag filtering within compute optimizer. ability to filter recommendation results by tag and tag key value pairs. ability to filter by inferred workload type added.
* feature: KMS: This release makes the NitroEnclave request parameter Recipient and the response field for CiphertextForRecipient available in AWS SDKs. It also adds the regex pattern for CloudHsmClusterId validation.

## 2.1368.0
* feature: Appflow: Adds Jwt Support for Salesforce Credentials.
* feature: Athena: You can now use capacity reservations on Amazon Athena to run SQL queries on fully-managed compute capacity.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
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.1368.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1369.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
81 changes: 60 additions & 21 deletions apis/compute-optimizer-2019-11-01.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,10 @@
"lastRefreshTimestamp": {
"type": "timestamp"
},
"currentPerformanceRisk": {}
"currentPerformanceRisk": {},
"tags": {
"shape": "S3s"
}
}
}
},
Expand Down Expand Up @@ -546,7 +549,10 @@
"inferredWorkloadTypes": {
"shape": "S31"
},
"instanceState": {}
"instanceState": {},
"tags": {
"shape": "S3s"
}
}
}
},
Expand Down Expand Up @@ -602,10 +608,10 @@
"members": {
"name": {},
"timestamps": {
"shape": "S4k"
"shape": "S4o"
},
"values": {
"shape": "S4l"
"shape": "S4p"
}
}
}
Expand Down Expand Up @@ -661,13 +667,13 @@
"members": {
"name": {},
"timestamps": {
"shape": "S4k"
"shape": "S4o"
},
"upperBoundValues": {
"shape": "S4l"
"shape": "S4p"
},
"lowerBoundValues": {
"shape": "S4l"
"shape": "S4p"
}
}
}
Expand Down Expand Up @@ -725,7 +731,7 @@
"members": {
"containerName": {},
"memorySizeConfiguration": {
"shape": "S57"
"shape": "S5b"
},
"cpu": {
"type": "integer"
Expand Down Expand Up @@ -799,7 +805,7 @@
"members": {
"containerName": {},
"memorySizeConfiguration": {
"shape": "S57"
"shape": "S5b"
},
"cpu": {
"type": "integer"
Expand All @@ -810,7 +816,10 @@
}
}
},
"currentPerformanceRisk": {}
"currentPerformanceRisk": {},
"tags": {
"shape": "S3s"
}
}
}
},
Expand Down Expand Up @@ -997,7 +1006,10 @@
}
}
},
"currentPerformanceRisk": {}
"currentPerformanceRisk": {},
"tags": {
"shape": "S3s"
}
}
}
}
Expand Down Expand Up @@ -1112,6 +1124,20 @@
"type": "long"
}
}
},
"inferredWorkloadSavings": {
"type": "list",
"member": {
"type": "structure",
"members": {
"inferredWorkloadTypes": {
"shape": "S31"
},
"estimatedMonthlySavings": {
"shape": "S2q"
}
}
}
}
}
}
Expand Down Expand Up @@ -1299,13 +1325,16 @@
"type": "double"
},
"estimatedMonthlySavings": {
"type": "structure",
"members": {
"currency": {},
"value": {
"type": "double"
}
}
"shape": "S2q"
}
}
},
"S2q": {
"type": "structure",
"members": {
"currency": {},
"value": {
"type": "double"
}
}
},
Expand Down Expand Up @@ -1367,19 +1396,29 @@
}
}
},
"S4k": {
"S3s": {
"type": "list",
"member": {
"type": "structure",
"members": {
"key": {},
"value": {}
}
}
},
"S4o": {
"type": "list",
"member": {
"type": "timestamp"
}
},
"S4l": {
"S4p": {
"type": "list",
"member": {
"type": "double"
}
},
"S57": {
"S5b": {
"type": "structure",
"members": {
"memory": {
Expand Down
100 changes: 86 additions & 14 deletions apis/compute-optimizer-2019-11-01.normal.json

Large diffs are not rendered by default.

Loading

0 comments on commit 9e544e5

Please sign in to comment.