Skip to content

Commit

Permalink
Updates SDK to v2.1609.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Apr 29, 2024
1 parent 361a9c9 commit 9e8fb67
Show file tree
Hide file tree
Showing 27 changed files with 1,564 additions and 315 deletions.
32 changes: 32 additions & 0 deletions .changes/2.1609.0.json
@@ -0,0 +1,32 @@
[
{
"type": "feature",
"category": "Amplify",
"description": "Updating max results limit for listing any resources (Job, Artifacts, Branch, BackendResources, DomainAssociation) to 50 with the exception of list apps that where max results can be up to 100."
},
{
"type": "feature",
"category": "ConnectCases",
"description": "This feature releases DeleteField, DeletedLayout, and DeleteTemplate API's"
},
{
"type": "feature",
"category": "Inspector2",
"description": "Update Inspector2 to include new Agentless API parameters."
},
{
"type": "feature",
"category": "TimestreamQuery",
"description": "This change allows users to update and describe account settings associated with their accounts."
},
{
"type": "feature",
"category": "TranscribeService",
"description": "This update provides error messaging for generative call summarization in Transcribe Call Analytics"
},
{
"type": "feature",
"category": "TrustedAdvisor",
"description": "This release adds the BatchUpdateRecommendationResourceExclusion API to support batch updates of Recommendation Resource exclusion statuses and introduces a new exclusion status filter to the ListRecommendationResources and ListOrganizationRecommendationResources APIs."
}
]
10 changes: 9 additions & 1 deletion CHANGELOG.md
@@ -1,7 +1,15 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1608.0-->
<!--LATEST=2.1609.0-->
<!--ENTRYINSERT-->

## 2.1609.0
* feature: Amplify: Updating max results limit for listing any resources (Job, Artifacts, Branch, BackendResources, DomainAssociation) to 50 with the exception of list apps that where max results can be up to 100.
* feature: ConnectCases: This feature releases DeleteField, DeletedLayout, and DeleteTemplate API's
* feature: Inspector2: Update Inspector2 to include new Agentless API parameters.
* feature: TimestreamQuery: This change allows users to update and describe account settings associated with their accounts.
* feature: TranscribeService: This update provides error messaging for generative call summarization in Transcribe Call Analytics
* feature: TrustedAdvisor: This release adds the BatchUpdateRecommendationResourceExclusion API to support batch updates of Recommendation Resource exclusion statuses and introduces a new exclusion status filter to the ListRecommendationResources and ListOrganizationRecommendationResources APIs.

## 2.1608.0
* feature: CodePipeline: Add ability to manually and automatically roll back a pipeline stage to a previously successful execution.
* feature: CognitoIdentityServiceProvider: Add LimitExceededException to SignUp errors
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -64,7 +64,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.1608.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1609.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
3 changes: 3 additions & 0 deletions apis/amplify-2017-07-25.min.json
Expand Up @@ -5,6 +5,9 @@
"endpointPrefix": "amplify",
"jsonVersion": "1.1",
"protocol": "rest-json",
"protocols": [
"rest-json"
],
"serviceAbbreviation": "Amplify",
"serviceFullName": "AWS Amplify",
"serviceId": "Amplify",
Expand Down
10 changes: 9 additions & 1 deletion apis/amplify-2017-07-25.normal.json
Expand Up @@ -5,6 +5,9 @@
"endpointPrefix": "amplify",
"jsonVersion": "1.1",
"protocol": "rest-json",
"protocols": [
"rest-json"
],
"serviceAbbreviation": "Amplify",
"serviceFullName": "AWS Amplify",
"serviceId": "Amplify",
Expand Down Expand Up @@ -2895,7 +2898,7 @@
"locationName": "nextToken"
},
"maxResults": {
"shape": "MaxResults",
"shape": "MaxResultsForListApps",
"documentation": "<p>The maximum number of records to list in a single response. </p>",
"location": "querystring",
"locationName": "maxResults"
Expand Down Expand Up @@ -3246,6 +3249,11 @@
"pattern": "(?s).*"
},
"MaxResults": {
"type": "integer",
"max": 50,
"min": 0
},
"MaxResultsForListApps": {
"type": "integer",
"max": 100,
"min": 0
Expand Down

0 comments on commit 9e8fb67

Please sign in to comment.