Skip to content

Commit

Permalink
Updates SDK to v2.1428.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Aug 2, 2023
1 parent f71e8e5 commit 0700767
Show file tree
Hide file tree
Showing 23 changed files with 3,263 additions and 1,302 deletions.
27 changes: 27 additions & 0 deletions .changes/2.1428.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"type": "feature",
"category": "Budgets",
"description": "As part of CAE tagging integration we need to update our budget names regex filter to prevent customers from using \"/action/\" in their budget names."
},
{
"type": "feature",
"category": "CognitoIdentityServiceProvider",
"description": "New feature that logs Cognito user pool error messages to CloudWatch logs."
},
{
"type": "feature",
"category": "Glue",
"description": "This release includes additional Glue Streaming KAKFA SASL property types."
},
{
"type": "feature",
"category": "Resiliencehub",
"description": "Drift Detection capability added when applications policy has moved from a meet to breach state. Customers will be able to exclude operational recommendations and receive credit in their resilience score. Customers can now add ARH permissions to an existing or new role."
},
{
"type": "feature",
"category": "SageMaker",
"description": "SageMaker Inference Recommender introduces a new API GetScalingConfigurationRecommendation to recommend auto scaling policies based on completed Inference Recommender jobs."
}
]
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1427.0-->
<!--LATEST=2.1428.0-->
<!--ENTRYINSERT-->

## 2.1428.0
* feature: Budgets: As part of CAE tagging integration we need to update our budget names regex filter to prevent customers from using "/action/" in their budget names.
* feature: CognitoIdentityServiceProvider: New feature that logs Cognito user pool error messages to CloudWatch logs.
* feature: Glue: This release includes additional Glue Streaming KAKFA SASL property types.
* feature: Resiliencehub: Drift Detection capability added when applications policy has moved from a meet to breach state. Customers will be able to exclude operational recommendations and receive credit in their resilience score. Customers can now add ARH permissions to an existing or new role.
* feature: SageMaker: SageMaker Inference Recommender introduces a new API GetScalingConfigurationRecommendation to recommend auto scaling policies based on completed Inference Recommender jobs.

## 2.1427.0
* feature: Batch: This release adds support for price capacity optimized allocation strategy for Spot Instances.
* feature: DMS: Adding new API describe-engine-versions which provides information about the lifecycle of a replication instance's version.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,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.1427.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1428.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
6 changes: 3 additions & 3 deletions apis/budgets-2016-10-20.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -1025,7 +1025,7 @@
"members": {
"BudgetName": {
"shape": "BudgetName",
"documentation": "<p>The name of a budget. The name must be unique within an account. The <code>:</code> and <code>\\</code> characters aren't allowed in <code>BudgetName</code>.</p>"
"documentation": "<p>The name of a budget. The name must be unique within an account. The <code>:</code> and <code>\\</code> characters, and the \"/action/\" substring, aren't allowed in <code>BudgetName</code>.</p>"
},
"BudgetLimit": {
"shape": "Spend",
Expand Down Expand Up @@ -1072,10 +1072,10 @@
},
"BudgetName": {
"type": "string",
"documentation": "<p> A string that represents the budget name. The \":\" and \"\\\" characters aren't allowed.</p>",
"documentation": "<p> A string that represents the budget name. The \":\" and \"\\\" characters, and the \"/action/\" substring, aren't allowed.</p>",
"max": 100,
"min": 1,
"pattern": "[^:\\\\]+"
"pattern": "^(?![^:\\\\]*/action/)[^:\\\\]+$"
},
"BudgetNotificationsForAccount": {
"type": "structure",
Expand Down
Loading

0 comments on commit 0700767

Please sign in to comment.