Skip to content

Commit 9efcff4

Browse files
author
awstools
committed
Updates SDK to v2.1540.0
1 parent d1d1b31 commit 9efcff4

21 files changed

+2035
-453
lines changed

.changes/2.1540.0.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "Athena",
5+
"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."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "CodeBuild",
10+
"description": "Release CodeBuild Reserved Capacity feature"
11+
},
12+
{
13+
"type": "feature",
14+
"category": "DynamoDB",
15+
"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."
16+
},
17+
{
18+
"type": "feature",
19+
"category": "QConnect",
20+
"description": "Increased Quick Response name max length to 100"
21+
}
22+
]

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1539.0-->
2+
<!--LATEST=2.1540.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1540.0
6+
* 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.
7+
* feature: CodeBuild: Release CodeBuild Reserved Capacity feature
8+
* 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.
9+
* feature: QConnect: Increased Quick Response name max length to 100
10+
511
## 2.1539.0
612
* 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.
713
* feature: CloudTrail: This release adds a new API ListInsightsMetricData to retrieve metric data from CloudTrail Insights.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
6969
To use the SDK in the browser, simply add the following script tag to your
7070
HTML pages:
7171

72-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1539.0.min.js"></script>
72+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1540.0.min.js"></script>
7373

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

apis/athena-2017-05-18.min.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -949,14 +949,14 @@
949949
"required": [
950950
"WorkGroup",
951951
"Name",
952-
"Payload",
953952
"Type"
954953
],
955954
"members": {
956955
"WorkGroup": {},
957956
"Name": {},
958957
"Payload": {},
959958
"Type": {},
959+
"NotebookS3LocationUri": {},
960960
"ClientRequestToken": {}
961961
}
962962
},

apis/athena-2017-05-18.normal.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@
856856
"shape": "TooManyRequestsException"
857857
}
858858
],
859-
"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>"
859+
"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>"
860860
},
861861
"ListApplicationDPUSizes": {
862862
"name": "ListApplicationDPUSizes",
@@ -3365,7 +3365,6 @@
33653365
"required": [
33663366
"WorkGroup",
33673367
"Name",
3368-
"Payload",
33693368
"Type"
33703369
],
33713370
"members": {
@@ -3379,12 +3378,16 @@
33793378
},
33803379
"Payload": {
33813380
"shape": "Payload",
3382-
"documentation": "<p>The notebook content to be imported.</p>"
3381+
"documentation": "<p>The notebook content to be imported. The payload must be in <code>ipynb</code> format.</p>"
33833382
},
33843383
"Type": {
33853384
"shape": "NotebookType",
33863385
"documentation": "<p>The notebook content type. Currently, the only valid type is <code>IPYNB</code>.</p>"
33873386
},
3387+
"NotebookS3LocationUri": {
3388+
"shape": "S3Uri",
3389+
"documentation": "<p>A URI that specifies the Amazon S3 location of a notebook file in <code>ipynb</code> format.</p>"
3390+
},
33883391
"ClientRequestToken": {
33893392
"shape": "ClientRequestToken",
33903393
"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>"
@@ -5621,7 +5624,7 @@
56215624
},
56225625
"ExecutionRole": {
56235626
"shape": "RoleArn",
5624-
"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>"
5627+
"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>"
56255628
},
56265629
"CustomerContentEncryptionConfiguration": {
56275630
"shape": "CustomerContentEncryptionConfiguration",

0 commit comments

Comments
 (0)