Skip to content

Commit

Permalink
Updates SDK to v2.1064.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Jan 26, 2022
1 parent fbc174a commit 889624d
Show file tree
Hide file tree
Showing 24 changed files with 1,245 additions and 110 deletions.
22 changes: 22 additions & 0 deletions .changes/2.1064.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[
{
"type": "feature",
"category": "CodeGuruReviewer",
"description": "Added failure state and adjusted timeout in waiter"
},
{
"type": "feature",
"category": "FraudDetector",
"description": "Added new APIs for viewing past predictions and obtaining prediction metadata including prediction explanations: ListEventPredictions and GetEventPredictionMetadata"
},
{
"type": "feature",
"category": "SageMaker",
"description": "API changes relating to Fail steps in model building pipeline and add PipelineExecutionFailureReason in PipelineExecutionSummary."
},
{
"type": "feature",
"category": "SecurityHub",
"description": "Adding top level Sample boolean field"
}
]
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1063.0-->
<!--LATEST=2.1064.0-->
<!--ENTRYINSERT-->

## 2.1064.0
* feature: CodeGuruReviewer: Added failure state and adjusted timeout in waiter
* feature: FraudDetector: Added new APIs for viewing past predictions and obtaining prediction metadata including prediction explanations: ListEventPredictions and GetEventPredictionMetadata
* feature: SageMaker: API changes relating to Fail steps in model building pipeline and add PipelineExecutionFailureReason in PipelineExecutionSummary.
* feature: SecurityHub: Adding top level Sample boolean field

## 2.1063.0
* feature: Connect: This release adds support for custom vocabularies to be used with Contact Lens. Custom vocabularies improve transcription accuracy for one or more specific words.
* feature: EFS: Use Amazon EFS Replication to replicate your Amazon EFS file system in the AWS Region of your preference.
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.1063.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1064.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
9 changes: 7 additions & 2 deletions apis/codeguru-reviewer-2019-09-19.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -1080,6 +1080,11 @@
}
}
},
"ListRecommendationsMaxResults": {
"type": "integer",
"max": 300,
"min": 1
},
"ListRecommendationsRequest": {
"type": "structure",
"required": [
Expand All @@ -1093,7 +1098,7 @@
"locationName": "NextToken"
},
"MaxResults": {
"shape": "MaxResults",
"shape": "ListRecommendationsMaxResults",
"documentation": "<p> The maximum number of results that are returned per call. The default is 100. </p>",
"location": "querystring",
"locationName": "MaxResults"
Expand Down Expand Up @@ -1877,7 +1882,7 @@
},
"Text": {
"type": "string",
"max": 2048,
"max": 5000,
"min": 1
},
"ThirdPartySourceRepository": {
Expand Down
16 changes: 14 additions & 2 deletions apis/codeguru-reviewer-2019-09-19.waiters2.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,20 @@
"description": "Wait until a repository association is complete.",
"operation": "DescribeRepositoryAssociation",
"delay": 10,
"maxAttempts": 20,
"maxAttempts": 30,
"acceptors": [
{
"state": "success",
"matcher": "path",
"argument": "RepositoryAssociation.State",
"expected": "Associated"
},
{
"state": "failure",
"matcher": "path",
"argument": "RepositoryAssociation.State",
"expected": "Failed"
},
{
"state": "retry",
"matcher": "path",
Expand All @@ -27,14 +33,20 @@
"description": "Wait until a code review is complete.",
"operation": "DescribeCodeReview",
"delay": 10,
"maxAttempts": 60,
"maxAttempts": 180,
"acceptors": [
{
"state": "success",
"matcher": "path",
"argument": "CodeReview.State",
"expected": "Completed"
},
{
"state": "failure",
"matcher": "path",
"argument": "CodeReview.State",
"expected": "Failed"
},
{
"state": "retry",
"matcher": "path",
Expand Down
12 changes: 6 additions & 6 deletions apis/ebs-2019-11-02.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -463,19 +463,19 @@
},
"NextToken": {
"shape": "PageToken",
"documentation": "<p>The token to request the next page of results.</p>",
"documentation": "<p>The token to request the next page of results.</p> <p>If you specify <b>NextToken</b>, then <b>StartingBlockIndex</b> is ignored.</p>",
"location": "querystring",
"locationName": "pageToken"
},
"MaxResults": {
"shape": "MaxResults",
"documentation": "<p>The number of results to return.</p>",
"documentation": "<p>The maximum number of blocks to be returned by the request.</p> <p>Even if additional blocks can be retrieved from the snapshot, the request can return less blocks than <b>MaxResults</b> or an empty array of blocks.</p> <p>To retrieve the next set of blocks from the snapshot, make another request with the returned <b>NextToken</b> value. The value of <b>NextToken</b> is <code>null</code> when there are no more blocks to return.</p>",
"location": "querystring",
"locationName": "maxResults"
},
"StartingBlockIndex": {
"shape": "BlockIndex",
"documentation": "<p>The block index from which the comparison should start.</p> <p>The list in the response will start from this block index or the next valid block index in the snapshots.</p>",
"documentation": "<p>The block index from which the comparison should start.</p> <p>The list in the response will start from this block index or the next valid block index in the snapshots.</p> <p>If you specify <b>NextToken</b>, then <b>StartingBlockIndex</b> is ignored.</p>",
"location": "querystring",
"locationName": "startingBlockIndex"
}
Expand Down Expand Up @@ -520,19 +520,19 @@
},
"NextToken": {
"shape": "PageToken",
"documentation": "<p>The token to request the next page of results.</p>",
"documentation": "<p>The token to request the next page of results.</p> <p>If you specify <b>NextToken</b>, then <b>StartingBlockIndex</b> is ignored.</p>",
"location": "querystring",
"locationName": "pageToken"
},
"MaxResults": {
"shape": "MaxResults",
"documentation": "<p>The number of results to return.</p>",
"documentation": "<p>The maximum number of blocks to be returned by the request.</p> <p>Even if additional blocks can be retrieved from the snapshot, the request can return less blocks than <b>MaxResults</b> or an empty array of blocks.</p> <p>To retrieve the next set of blocks from the snapshot, make another request with the returned <b>NextToken</b> value. The value of <b>NextToken</b> is <code>null</code> when there are no more blocks to return.</p>",
"location": "querystring",
"locationName": "maxResults"
},
"StartingBlockIndex": {
"shape": "BlockIndex",
"documentation": "<p>The block index from which the list should start. The list in the response will start from this block index or the next valid block index in the snapshot.</p>",
"documentation": "<p>The block index from which the list should start. The list in the response will start from this block index or the next valid block index in the snapshot.</p> <p>If you specify <b>NextToken</b>, then <b>StartingBlockIndex</b> is ignored.</p>",
"location": "querystring",
"locationName": "startingBlockIndex"
}
Expand Down
Loading

0 comments on commit 889624d

Please sign in to comment.