Skip to content

Commit

Permalink
Updates SDK to v2.1278.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Dec 19, 2022
1 parent 9859a9d commit efec413
Show file tree
Hide file tree
Showing 36 changed files with 2,536 additions and 1,032 deletions.
32 changes: 32 additions & 0 deletions .changes/2.1278.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[
{
"type": "feature",
"category": "Athena",
"description": "Add missed InvalidRequestException in GetCalculationExecutionCode,StopCalculationExecution APIs. Correct required parameters (Payload and Type) in UpdateNotebook API. Change Notebook size from 15 Mb to 10 Mb."
},
{
"type": "feature",
"category": "ECS",
"description": "This release adds support for alarm-based rollbacks in ECS, a new feature that allows customers to add automated safeguards for Amazon ECS service rolling updates."
},
{
"type": "feature",
"category": "KinesisVideo",
"description": "Amazon Kinesis Video Streams offers capabilities to stream video and audio in real-time via WebRTC to the cloud for storage, playback, and analytical processing. Customers can use our enhanced WebRTC SDK and cloud APIs to enable real-time streaming, as well as media ingestion to the cloud."
},
{
"type": "feature",
"category": "KinesisVideoWebRTCStorage",
"description": "Amazon Kinesis Video Streams offers capabilities to stream video and audio in real-time via WebRTC to the cloud for storage, playback, and analytical processing. Customers can use our enhanced WebRTC SDK and cloud APIs to enable real-time streaming, as well as media ingestion to the cloud."
},
{
"type": "feature",
"category": "RDS",
"description": "Add support for --enable-customer-owned-ip to RDS create-db-instance-read-replica API for RDS on Outposts."
},
{
"type": "feature",
"category": "SageMaker",
"description": "AWS Sagemaker - Sagemaker Images now supports Aliases as secondary identifiers for ImageVersions. SageMaker Images now supports additional metadata for ImageVersions for better images management."
}
]
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1277.0-->
<!--LATEST=2.1278.0-->
<!--ENTRYINSERT-->

## 2.1278.0
* feature: Athena: Add missed InvalidRequestException in GetCalculationExecutionCode,StopCalculationExecution APIs. Correct required parameters (Payload and Type) in UpdateNotebook API. Change Notebook size from 15 Mb to 10 Mb.
* feature: ECS: This release adds support for alarm-based rollbacks in ECS, a new feature that allows customers to add automated safeguards for Amazon ECS service rolling updates.
* feature: KinesisVideo: Amazon Kinesis Video Streams offers capabilities to stream video and audio in real-time via WebRTC to the cloud for storage, playback, and analytical processing. Customers can use our enhanced WebRTC SDK and cloud APIs to enable real-time streaming, as well as media ingestion to the cloud.
* feature: KinesisVideoWebRTCStorage: Amazon Kinesis Video Streams offers capabilities to stream video and audio in real-time via WebRTC to the cloud for storage, playback, and analytical processing. Customers can use our enhanced WebRTC SDK and cloud APIs to enable real-time streaming, as well as media ingestion to the cloud.
* feature: RDS: Add support for --enable-customer-owned-ip to RDS create-db-instance-read-replica API for RDS on Outposts.
* feature: SageMaker: AWS Sagemaker - Sagemaker Images now supports Aliases as secondary identifiers for ImageVersions. SageMaker Images now supports additional metadata for ImageVersions for better images management.

## 2.1277.0
* feature: Appflow: This release updates the ListConnectorEntities API action so that it returns paginated responses that customers can retrieve with next tokens.
* feature: DataSync: AWS DataSync now supports the use of tags with task executions. With this new feature, you can apply tags each time you execute a task, giving you greater control and management over your task executions.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ for further details.
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.1277.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1278.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
4 changes: 3 additions & 1 deletion apis/athena-2017-05-18.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -1547,7 +1547,9 @@
"input": {
"type": "structure",
"required": [
"NotebookId"
"NotebookId",
"Payload",
"Type"
],
"members": {
"NotebookId": {},
Expand Down
14 changes: 11 additions & 3 deletions apis/athena-2017-05-18.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,9 @@
{
"shape": "InternalServerException"
},
{
"shape": "InvalidRequestException"
},
{
"shape": "ResourceNotFoundException"
}
Expand Down Expand Up @@ -618,7 +621,7 @@
"shape": "InvalidRequestException"
}
],
"documentation": "<p>Returns query execution runtime statistics related to a single execution of a query if you have access to the workgroup in which the query ran. The query execution runtime statistics is returned only when <a>QueryExecutionStatus$State</a> is in a SUCCEEDED or FAILED state.</p>"
"documentation": "<p>Returns query execution runtime statistics related to a single execution of a query if you have access to the workgroup in which the query ran. Query execution runtime statistics are returned only when <a>QueryExecutionStatus$State</a> is in a SUCCEEDED or FAILED state. Stage-level input and output row count and data size statistics are not shown when a query has row-level filters defined in Lake Formation.</p>"
},
"GetSession": {
"name": "GetSession",
Expand Down Expand Up @@ -1197,6 +1200,9 @@
{
"shape": "InternalServerException"
},
{
"shape": "InvalidRequestException"
},
{
"shape": "ResourceNotFoundException"
}
Expand Down Expand Up @@ -3691,7 +3697,7 @@
},
"Payload": {
"type": "string",
"max": 15728640,
"max": 10485760,
"min": 1
},
"PreparedStatement": {
Expand Down Expand Up @@ -4836,7 +4842,9 @@
"UpdateNotebookInput": {
"type": "structure",
"required": [
"NotebookId"
"NotebookId",
"Payload",
"Type"
],
"members": {
"NotebookId": {
Expand Down
Loading

0 comments on commit efec413

Please sign in to comment.