Skip to content

Commit

Permalink
Merge branch 'release-1.31.54' into develop
Browse files Browse the repository at this point in the history
* release-1.31.54:
  Bumping version to 1.31.54
  Update to latest partitions and endpoints
  Update to latest models
  • Loading branch information
aws-sdk-python-automation committed Sep 25, 2023
2 parents e284ac1 + d167350 commit 2566316
Show file tree
Hide file tree
Showing 12 changed files with 743 additions and 89 deletions.
37 changes: 37 additions & 0 deletions .changes/1.31.54.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[
{
"category": "``amplifyuibuilder``",
"description": "Support for generating code that is compatible with future versions of amplify project dependencies.",
"type": "api-change"
},
{
"category": "``chime-sdk-media-pipelines``",
"description": "Adds support for sending WebRTC audio to Amazon Kineses Video Streams.",
"type": "api-change"
},
{
"category": "``emr-serverless``",
"description": "This release adds support for application-wide default job configurations.",
"type": "api-change"
},
{
"category": "``finspace-data``",
"description": "Adding sensitive trait to attributes. Change max SessionDuration from 720 to 60. Correct \"ApiAccess\" attribute to \"apiAccess\" to maintain consistency between APIs.",
"type": "api-change"
},
{
"category": "``quicksight``",
"description": "Added ability to tag users upon creation.",
"type": "api-change"
},
{
"category": "``ssm``",
"description": "This release updates the enum values for ResourceType in SSM DescribeInstanceInformation input and ConnectionStatus in GetConnectionStatus output.",
"type": "api-change"
},
{
"category": "``wafv2``",
"description": "You can now perform an exact match against the web request's JA3 fingerprint.",
"type": "api-change"
}
]
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@
CHANGELOG
=========

1.31.54
=======

* api-change:``amplifyuibuilder``: Support for generating code that is compatible with future versions of amplify project dependencies.
* api-change:``chime-sdk-media-pipelines``: Adds support for sending WebRTC audio to Amazon Kineses Video Streams.
* api-change:``emr-serverless``: This release adds support for application-wide default job configurations.
* api-change:``finspace-data``: Adding sensitive trait to attributes. Change max SessionDuration from 720 to 60. Correct "ApiAccess" attribute to "apiAccess" to maintain consistency between APIs.
* api-change:``quicksight``: Added ability to tag users upon creation.
* api-change:``ssm``: This release updates the enum values for ResourceType in SSM DescribeInstanceInformation input and ConnectionStatus in GetConnectionStatus output.
* api-change:``wafv2``: You can now perform an exact match against the web request's JA3 fingerprint.


1.31.53
=======

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.31.53'
__version__ = '1.31.54'


class NullHandler(logging.Handler):
Expand Down
44 changes: 42 additions & 2 deletions botocore/data/amplifyuibuilder/2021-08-11/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
"errors":[
{"shape":"InvalidParameterException"}
],
"documentation":"<p>Exchanges an access code for a token.</p>"
"documentation":"<note> <p>This is for internal use.</p> </note> <p>Amplify uses this action to exchange an access code for a token.</p>"
},
"ExportComponents":{
"name":"ExportComponents",
Expand Down Expand Up @@ -340,7 +340,7 @@
"errors":[
{"shape":"InvalidParameterException"}
],
"documentation":"<p>Refreshes a previously issued access token that might have expired.</p>"
"documentation":"<note> <p>This is for internal use.</p> </note> <p>Amplify uses this action to refresh a previously issued access token that might have expired.</p>"
},
"StartCodegenJob":{
"name":"StartCodegenJob",
Expand Down Expand Up @@ -486,6 +486,32 @@
"type":"boolean",
"box":true
},
"CodegenDependencies":{
"type":"list",
"member":{"shape":"CodegenDependency"}
},
"CodegenDependency":{
"type":"structure",
"members":{
"name":{
"shape":"String",
"documentation":"<p>Name of the dependency package.</p>"
},
"supportedVersion":{
"shape":"String",
"documentation":"<p>Indicates the version of the supported dependency package.</p>"
},
"isSemVer":{
"shape":"Boolean",
"documentation":"<p>Determines if the dependency package is using Semantic versioning. If set to true, it indicates that the dependency package uses Semantic versioning.</p>"
},
"reason":{
"shape":"String",
"documentation":"<p>Indicates the reason to include the dependency package in your project code.</p>"
}
},
"documentation":"<p>Dependency package that may be required for the project code to run.</p>"
},
"CodegenFeatureFlags":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -728,6 +754,10 @@
"modifiedAt":{
"shape":"SyntheticTimestamp_date_time",
"documentation":"<p>The time that the code generation job was modified.</p>"
},
"dependencies":{
"shape":"CodegenDependencies",
"documentation":"<p>Lists the dependency packages that may be required for the project code to run.</p>"
}
},
"documentation":"<p>Describes the configuration for a code generation job that is associated with an Amplify app.</p>"
Expand Down Expand Up @@ -2952,6 +2982,12 @@
},
"payload":"body"
},
"ReactCodegenDependencies":{
"type":"map",
"key":{"shape":"String"},
"value":{"shape":"String"},
"documentation":"<p>Indicates the dependency version of the project code to be generated by Amazon Web Services Amplify. The version of the generated code output is determined by the version number contained in <code>aws-amplify</code>.</p>"
},
"ReactStartCodegenJobData":{
"type":"structure",
"members":{
Expand All @@ -2978,6 +3014,10 @@
"apiConfiguration":{
"shape":"ApiConfiguration",
"documentation":"<p>The API configuration for the code generation job.</p>"
},
"dependencies":{
"shape":"ReactCodegenDependencies",
"documentation":"<p>Lists the dependency packages that may be required for the project code to run.</p>"
}
},
"documentation":"<p>Describes the code generation job configuration for a React project.</p>"
Expand Down
Loading

0 comments on commit 2566316

Please sign in to comment.