Skip to content

Commit

Permalink
Updates SDK to v2.1080.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Feb 23, 2022
1 parent 9b3ae59 commit 488f6ad
Show file tree
Hide file tree
Showing 17 changed files with 301 additions and 107 deletions.
17 changes: 17 additions & 0 deletions .changes/2.1080.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{
"type": "feature",
"category": "Lambda",
"description": "Lambda releases .NET 6 managed runtime to be available in all commercial regions."
},
{
"type": "feature",
"category": "Textract",
"description": "Added support for merged cells and column header for table response."
},
{
"type": "feature",
"category": "Transfer",
"description": "The file input selection feature provides the ability to use either the originally uploaded file or the output file from the previous workflow step, enabling customers to make multiple copies of the original file while keeping the source file intact for file archival."
}
]
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1079.0-->
<!--LATEST=2.1080.0-->
<!--ENTRYINSERT-->

## 2.1080.0
* feature: Lambda: Lambda releases .NET 6 managed runtime to be available in all commercial regions.
* feature: Textract: Added support for merged cells and column header for table response.
* feature: Transfer: The file input selection feature provides the ability to use either the originally uploaded file or the output file from the previous workflow step, enabling customers to make multiple copies of the original file while keeping the source file intact for file archival.

## 2.1079.0
* feature: AppRunner: AWS App Runner adds a Java platform (Corretto 8, Corretto 11 runtimes) and a Node.js 14 runtime.
* feature: Translate: This release enables customers to use translation settings for formality customization in their synchronous translation output.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
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.1079.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1080.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
11 changes: 6 additions & 5 deletions apis/lambda-2015-03-31.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -1760,7 +1760,7 @@
"shape": "CodeSigningConfigNotFoundException"
}
],
"documentation": "<p>Updates a Lambda function's code. If code signing is enabled for the function, the code package must be signed by a trusted publisher. For more information, see <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-trustedcode.html\">Configuring code signing</a>.</p> <p>The function's code is locked when you publish a version. You can't modify the code of a published version, only the unpublished version.</p> <note> <p>For a function defined as a container image, Lambda resolves the image tag to an image digest. In Amazon ECR, if you update the image tag to a new image, Lambda does not automatically update the function.</p> </note>"
"documentation": "<p>Updates a Lambda function's code. If code signing is enabled for the function, the code package must be signed by a trusted publisher. For more information, see <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/configuration-trustedcode.html\">Configuring code signing</a>.</p> <p>If the function's package type is <code>Image</code>, you must specify the code package in <code>ImageUri</code> as the URI of a <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/lambda-images.html\">container image</a> in the Amazon ECR registry. </p> <p>If the function's package type is <code>Zip</code>, you must specify the deployment package as a <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-package.html#gettingstarted-package-zip\">.zip file archive</a>. Enter the Amazon S3 bucket and key of the code .zip file location. You can also provide the function code inline using the <code>ZipFile</code> field. </p> <p>The code in the deployment package must be compatible with the target instruction set architecture of the function (<code>x86-64</code> or <code>arm64</code>). </p> <p>The function's code is locked when you publish a version. You can't modify the code of a published version, only the unpublished version.</p> <note> <p>For a function defined as a container image, Lambda resolves the image tag to an image digest. In Amazon ECR, if you update the image tag to a new image, Lambda does not automatically update the function.</p> </note>"
},
"UpdateFunctionConfiguration": {
"name": "UpdateFunctionConfiguration",
Expand Down Expand Up @@ -4951,6 +4951,7 @@
"dotnetcore2.0",
"dotnetcore2.1",
"dotnetcore3.1",
"dotnet6",
"nodejs4.3-edge",
"go1.x",
"ruby2.5",
Expand Down Expand Up @@ -5382,23 +5383,23 @@
},
"ZipFile": {
"shape": "Blob",
"documentation": "<p>The base64-encoded contents of the deployment package. Amazon Web Services SDK and Amazon Web Services CLI clients handle the encoding for you.</p>"
"documentation": "<p>The base64-encoded contents of the deployment package. Amazon Web Services SDK and Amazon Web Services CLI clients handle the encoding for you. Use only with a function defined with a .zip file archive deployment package.</p>"
},
"S3Bucket": {
"shape": "S3Bucket",
"documentation": "<p>An Amazon S3 bucket in the same Amazon Web Services Region as your function. The bucket can be in a different Amazon Web Services account.</p>"
"documentation": "<p>An Amazon S3 bucket in the same Amazon Web Services Region as your function. The bucket can be in a different Amazon Web Services account. Use only with a function defined with a .zip file archive deployment package.</p>"
},
"S3Key": {
"shape": "S3Key",
"documentation": "<p>The Amazon S3 key of the deployment package.</p>"
"documentation": "<p>The Amazon S3 key of the deployment package. Use only with a function defined with a .zip file archive deployment package.</p>"
},
"S3ObjectVersion": {
"shape": "S3ObjectVersion",
"documentation": "<p>For versioned objects, the version of the deployment package object to use.</p>"
},
"ImageUri": {
"shape": "String",
"documentation": "<p>URI of a container image in the Amazon ECR registry.</p>"
"documentation": "<p>URI of a container image in the Amazon ECR registry. Do not use for a function defined with a .zip file archive.</p>"
},
"Publish": {
"shape": "Boolean",
Expand Down
56 changes: 54 additions & 2 deletions apis/lambda-2015-03-31.waiters2.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"delay": 5,
"maxAttempts": 60,
"operation": "GetFunctionConfiguration",
"description": "Waits for the function's State to be Active.",
"description": "Waits for the function's State to be Active. This waiter uses GetFunctionConfiguration API. This should be used after new function creation.",
"acceptors": [
{
"state": "success",
Expand All @@ -48,7 +48,7 @@
"delay": 5,
"maxAttempts": 60,
"operation": "GetFunctionConfiguration",
"description": "Waits for the function's LastUpdateStatus to be Successful.",
"description": "Waits for the function's LastUpdateStatus to be Successful. This waiter uses GetFunctionConfiguration API. This should be used after function updates.",
"acceptors": [
{
"state": "success",
Expand All @@ -69,6 +69,58 @@
"expected": "InProgress"
}
]
},
"FunctionActiveV2": {
"delay": 1,
"maxAttempts": 300,
"operation": "GetFunction",
"description": "Waits for the function's State to be Active. This waiter uses GetFunction API. This should be used after new function creation.",
"acceptors": [
{
"state": "success",
"matcher": "path",
"argument": "Configuration.State",
"expected": "Active"
},
{
"state": "failure",
"matcher": "path",
"argument": "Configuration.State",
"expected": "Failed"
},
{
"state": "retry",
"matcher": "path",
"argument": "Configuration.State",
"expected": "Pending"
}
]
},
"FunctionUpdatedV2": {
"delay": 1,
"maxAttempts": 300,
"operation": "GetFunction",
"description": "Waits for the function's LastUpdateStatus to be Successful. This waiter uses GetFunction API. This should be used after function updates.",
"acceptors": [
{
"state": "success",
"matcher": "path",
"argument": "Configuration.LastUpdateStatus",
"expected": "Successful"
},
{
"state": "failure",
"matcher": "path",
"argument": "Configuration.LastUpdateStatus",
"expected": "Failed"
},
{
"state": "retry",
"matcher": "path",
"argument": "Configuration.LastUpdateStatus",
"expected": "InProgress"
}
]
}
}
}
11 changes: 8 additions & 3 deletions apis/textract-2018-06-27.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,9 @@
"WORD",
"TABLE",
"CELL",
"SELECTION_ELEMENT"
"SELECTION_ELEMENT",
"MERGED_CELL",
"TITLE"
]
},
"BoundingBox": {
Expand Down Expand Up @@ -776,7 +778,8 @@
"type": "string",
"enum": [
"KEY",
"VALUE"
"VALUE",
"COLUMN_HEADER"
]
},
"EntityTypes": {
Expand Down Expand Up @@ -1370,7 +1373,9 @@
"enum": [
"VALUE",
"CHILD",
"COMPLEX_FEATURES"
"COMPLEX_FEATURES",
"MERGED_CELL",
"TITLE"
]
},
"RoleArn": {
Expand Down
40 changes: 22 additions & 18 deletions apis/transfer-2018-11-05.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -289,10 +289,10 @@
"members": {
"ExecutionId": {},
"InitialFileLocation": {
"shape": "S2m"
"shape": "S2n"
},
"ServiceMetadata": {
"shape": "S2q"
"shape": "S2r"
},
"ExecutionRole": {},
"LoggingConfiguration": {
Expand All @@ -310,10 +310,10 @@
"type": "structure",
"members": {
"Steps": {
"shape": "S2x"
"shape": "S2y"
},
"OnExceptionSteps": {
"shape": "S2x"
"shape": "S2y"
}
}
}
Expand Down Expand Up @@ -349,16 +349,16 @@
},
"SecurityPolicyName": {},
"SshCiphers": {
"shape": "S37"
"shape": "S38"
},
"SshKexs": {
"shape": "S37"
"shape": "S38"
},
"SshMacs": {
"shape": "S37"
"shape": "S38"
},
"TlsCiphers": {
"shape": "S37"
"shape": "S38"
}
}
}
Expand Down Expand Up @@ -624,10 +624,10 @@
"members": {
"ExecutionId": {},
"InitialFileLocation": {
"shape": "S2m"
"shape": "S2n"
},
"ServiceMetadata": {
"shape": "S2q"
"shape": "S2r"
},
"Status": {}
}
Expand Down Expand Up @@ -1163,7 +1163,8 @@
}
}
},
"OverwriteExisting": {}
"OverwriteExisting": {},
"SourceFileLocation": {}
}
},
"CustomStepDetails": {
Expand All @@ -1173,13 +1174,15 @@
"Target": {},
"TimeoutSeconds": {
"type": "integer"
}
},
"SourceFileLocation": {}
}
},
"DeleteStepDetails": {
"type": "structure",
"members": {
"Name": {}
"Name": {},
"SourceFileLocation": {}
}
},
"TagStepDetails": {
Expand All @@ -1199,7 +1202,8 @@
"Value": {}
}
}
}
},
"SourceFileLocation": {}
}
}
}
Expand All @@ -1212,7 +1216,7 @@
"Path": {}
}
},
"S2m": {
"S2n": {
"type": "structure",
"members": {
"S3FileLocation": {
Expand All @@ -1229,7 +1233,7 @@
}
}
},
"S2q": {
"S2r": {
"type": "structure",
"required": [
"UserDetails"
Expand All @@ -1249,7 +1253,7 @@
}
}
},
"S2x": {
"S2y": {
"type": "list",
"member": {
"type": "structure",
Expand All @@ -1270,7 +1274,7 @@
}
}
},
"S37": {
"S38": {
"type": "list",
"member": {}
}
Expand Down
Loading

0 comments on commit 488f6ad

Please sign in to comment.