Skip to content

Commit 9e8fb67

Browse files
author
awstools
committed
Updates SDK to v2.1609.0
1 parent 361a9c9 commit 9e8fb67

27 files changed

+1564
-315
lines changed

Diff for: .changes/2.1609.0.json

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "Amplify",
5+
"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."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "ConnectCases",
10+
"description": "This feature releases DeleteField, DeletedLayout, and DeleteTemplate API's"
11+
},
12+
{
13+
"type": "feature",
14+
"category": "Inspector2",
15+
"description": "Update Inspector2 to include new Agentless API parameters."
16+
},
17+
{
18+
"type": "feature",
19+
"category": "TimestreamQuery",
20+
"description": "This change allows users to update and describe account settings associated with their accounts."
21+
},
22+
{
23+
"type": "feature",
24+
"category": "TranscribeService",
25+
"description": "This update provides error messaging for generative call summarization in Transcribe Call Analytics"
26+
},
27+
{
28+
"type": "feature",
29+
"category": "TrustedAdvisor",
30+
"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."
31+
}
32+
]

Diff for: CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1608.0-->
2+
<!--LATEST=2.1609.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1609.0
6+
* 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.
7+
* feature: ConnectCases: This feature releases DeleteField, DeletedLayout, and DeleteTemplate API's
8+
* feature: Inspector2: Update Inspector2 to include new Agentless API parameters.
9+
* feature: TimestreamQuery: This change allows users to update and describe account settings associated with their accounts.
10+
* feature: TranscribeService: This update provides error messaging for generative call summarization in Transcribe Call Analytics
11+
* 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.
12+
513
## 2.1608.0
614
* feature: CodePipeline: Add ability to manually and automatically roll back a pipeline stage to a previously successful execution.
715
* feature: CognitoIdentityServiceProvider: Add LimitExceededException to SignUp errors

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
6464
To use the SDK in the browser, simply add the following script tag to your
6565
HTML pages:
6666

67-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1608.0.min.js"></script>
67+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1609.0.min.js"></script>
6868

6969
You can also build a custom browser SDK with your specified set of AWS services.
7070
This can allow you to reduce the SDK's size, specify different API versions of

Diff for: apis/amplify-2017-07-25.min.json

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
"endpointPrefix": "amplify",
66
"jsonVersion": "1.1",
77
"protocol": "rest-json",
8+
"protocols": [
9+
"rest-json"
10+
],
811
"serviceAbbreviation": "Amplify",
912
"serviceFullName": "AWS Amplify",
1013
"serviceId": "Amplify",

Diff for: apis/amplify-2017-07-25.normal.json

+9-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
"endpointPrefix": "amplify",
66
"jsonVersion": "1.1",
77
"protocol": "rest-json",
8+
"protocols": [
9+
"rest-json"
10+
],
811
"serviceAbbreviation": "Amplify",
912
"serviceFullName": "AWS Amplify",
1013
"serviceId": "Amplify",
@@ -2895,7 +2898,7 @@
28952898
"locationName": "nextToken"
28962899
},
28972900
"maxResults": {
2898-
"shape": "MaxResults",
2901+
"shape": "MaxResultsForListApps",
28992902
"documentation": "<p>The maximum number of records to list in a single response. </p>",
29002903
"location": "querystring",
29012904
"locationName": "maxResults"
@@ -3246,6 +3249,11 @@
32463249
"pattern": "(?s).*"
32473250
},
32483251
"MaxResults": {
3252+
"type": "integer",
3253+
"max": 50,
3254+
"min": 0
3255+
},
3256+
"MaxResultsForListApps": {
32493257
"type": "integer",
32503258
"max": 100,
32513259
"min": 0

0 commit comments

Comments
 (0)