Skip to content

Commit

Permalink
Updates SDK to v2.1540.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Jan 19, 2024
1 parent d1d1b31 commit 9efcff4
Show file tree
Hide file tree
Showing 21 changed files with 2,035 additions and 453 deletions.
22 changes: 22 additions & 0 deletions .changes/2.1540.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[
{
"type": "feature",
"category": "Athena",
"description": "Introducing new NotebookS3LocationUri parameter to Athena ImportNotebook API. Payload is no longer required and either Payload or NotebookS3LocationUri needs to be provided (not both) for a successful ImportNotebook API call. If both are provided, an InvalidRequestException will be thrown."
},
{
"type": "feature",
"category": "CodeBuild",
"description": "Release CodeBuild Reserved Capacity feature"
},
{
"type": "feature",
"category": "DynamoDB",
"description": "This release adds support for including ApproximateCreationDateTimePrecision configurations in EnableKinesisStreamingDestination API, adds the same as an optional field in the response of DescribeKinesisStreamingDestination, and adds support for a new UpdateKinesisStreamingDestination API."
},
{
"type": "feature",
"category": "QConnect",
"description": "Increased Quick Response name max length to 100"
}
]
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.1539.0-->
<!--LATEST=2.1540.0-->
<!--ENTRYINSERT-->

## 2.1540.0
* feature: Athena: Introducing new NotebookS3LocationUri parameter to Athena ImportNotebook API. Payload is no longer required and either Payload or NotebookS3LocationUri needs to be provided (not both) for a successful ImportNotebook API call. If both are provided, an InvalidRequestException will be thrown.
* feature: CodeBuild: Release CodeBuild Reserved Capacity feature
* feature: DynamoDB: This release adds support for including ApproximateCreationDateTimePrecision configurations in EnableKinesisStreamingDestination API, adds the same as an optional field in the response of DescribeKinesisStreamingDestination, and adds support for a new UpdateKinesisStreamingDestination API.
* feature: QConnect: Increased Quick Response name max length to 100

## 2.1539.0
* feature: B2bi: Increasing TestMapping inputFileContent file size limit to 5MB and adding file size limit 250KB for TestParsing input file. This release also includes exposing InternalServerException for Tag APIs.
* feature: CloudTrail: This release adds a new API ListInsightsMetricData to retrieve metric data from CloudTrail Insights.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,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.1539.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1540.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
2 changes: 1 addition & 1 deletion apis/athena-2017-05-18.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -949,14 +949,14 @@
"required": [
"WorkGroup",
"Name",
"Payload",
"Type"
],
"members": {
"WorkGroup": {},
"Name": {},
"Payload": {},
"Type": {},
"NotebookS3LocationUri": {},
"ClientRequestToken": {}
}
},
Expand Down
11 changes: 7 additions & 4 deletions apis/athena-2017-05-18.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -856,7 +856,7 @@
"shape": "TooManyRequestsException"
}
],
"documentation": "<p>Imports a single <code>ipynb</code> file to a Spark enabled workgroup. The maximum file size that can be imported is 10 megabytes. If an <code>ipynb</code> file with the same name already exists in the workgroup, throws an error.</p>"
"documentation": "<p>Imports a single <code>ipynb</code> file to a Spark enabled workgroup. To import the notebook, the request must specify a value for either <code>Payload</code> or <code>NoteBookS3LocationUri</code>. If neither is specified or both are specified, an <code>InvalidRequestException</code> occurs. The maximum file size that can be imported is 10 megabytes. If an <code>ipynb</code> file with the same name already exists in the workgroup, throws an error.</p>"
},
"ListApplicationDPUSizes": {
"name": "ListApplicationDPUSizes",
Expand Down Expand Up @@ -3365,7 +3365,6 @@
"required": [
"WorkGroup",
"Name",
"Payload",
"Type"
],
"members": {
Expand All @@ -3379,12 +3378,16 @@
},
"Payload": {
"shape": "Payload",
"documentation": "<p>The notebook content to be imported.</p>"
"documentation": "<p>The notebook content to be imported. The payload must be in <code>ipynb</code> format.</p>"
},
"Type": {
"shape": "NotebookType",
"documentation": "<p>The notebook content type. Currently, the only valid type is <code>IPYNB</code>.</p>"
},
"NotebookS3LocationUri": {
"shape": "S3Uri",
"documentation": "<p>A URI that specifies the Amazon S3 location of a notebook file in <code>ipynb</code> format.</p>"
},
"ClientRequestToken": {
"shape": "ClientRequestToken",
"documentation": "<p>A unique case-sensitive string used to ensure the request to import the notebook is idempotent (executes only once).</p> <important> <p>This token is listed as not required because Amazon Web Services SDKs (for example the Amazon Web Services SDK for Java) auto-generate the token for you. If you are not using the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide this token or the action will fail.</p> </important>"
Expand Down Expand Up @@ -5621,7 +5624,7 @@
},
"ExecutionRole": {
"shape": "RoleArn",
"documentation": "<p>The ARN of the execution role used to access user resources for Spark sessions and Identity Center enabled workgroups. This property applies only to Spark enabled workgroups and Identity Center enabled workgroups.</p>"
"documentation": "<p>The ARN of the execution role used to access user resources for Spark sessions and IAM Identity Center enabled workgroups. This property applies only to Spark enabled workgroups and IAM Identity Center enabled workgroups. The property is required for IAM Identity Center enabled workgroups.</p>"
},
"CustomerContentEncryptionConfiguration": {
"shape": "CustomerContentEncryptionConfiguration",
Expand Down
Loading

0 comments on commit 9efcff4

Please sign in to comment.