Skip to content

Commit

Permalink
Merge branch 'release-1.34.23'
Browse files Browse the repository at this point in the history
* release-1.34.23:
  Bumping version to 1.34.23
  Update to latest partitions and endpoints
  Update to latest models
  • Loading branch information
aws-sdk-python-automation committed Jan 19, 2024
2 parents 0995e25 + b52f2e5 commit 63e7153
Show file tree
Hide file tree
Showing 9 changed files with 586 additions and 13 deletions.
22 changes: 22 additions & 0 deletions .changes/1.34.23.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[
{
"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": "api-change"
},
{
"category": "``codebuild``",
"description": "Release CodeBuild Reserved Capacity feature",
"type": "api-change"
},
{
"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": "api-change"
},
{
"category": "``qconnect``",
"description": "Increased Quick Response name max length to 100",
"type": "api-change"
}
]
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
CHANGELOG
=========

1.34.23
=======

* api-change:``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.
* api-change:``codebuild``: Release CodeBuild Reserved Capacity feature
* api-change:``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.
* api-change:``qconnect``: Increased Quick Response name max length to 100


1.34.22
=======

Expand Down
2 changes: 1 addition & 1 deletion botocore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import os
import re

__version__ = '1.34.22'
__version__ = '1.34.23'


class NullHandler(logging.Handler):
Expand Down
11 changes: 7 additions & 4 deletions botocore/data/athena/2017-05-18/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@
{"shape":"InvalidRequestException"},
{"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 @@ -2656,7 +2656,6 @@
"required":[
"WorkGroup",
"Name",
"Payload",
"Type"
],
"members":{
Expand All @@ -2670,12 +2669,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 @@ -4875,7 +4878,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 63e7153

Please sign in to comment.